Câu trả lời:
Bạn có thể sử dụng wp_delete_post
.
Để nhận tất cả các bài đăng có trạng thái "rác":
$trash = get_posts('post_status=trash&numberposts=-1');
Sau đó:
foreach($trash as $post)
wp_delete_post($post->ID, $bypass_trash = true);
Điều này đã không làm việc cho tôi. Tôi đã phải làm như sau:
$args = array(
'posts_per_page' => -1,
'post_status' => 'trash'
);
$trash = get_posts($args);
foreach($trash as $post)
{
wp_delete_post($post->ID, true);
}