Jawaban:
Anda bisa menggunakannya wp_delete_post
.
Untuk mendapatkan semua pos dengan status "sampah":
$trash = get_posts('post_status=trash&numberposts=-1');
Kemudian:
foreach($trash as $post)
wp_delete_post($post->ID, $bypass_trash = true);
Ini tidak berhasil untuk saya. Saya harus melakukan hal berikut:
$args = array(
'posts_per_page' => -1,
'post_status' => 'trash'
);
$trash = get_posts($args);
foreach($trash as $post)
{
wp_delete_post($post->ID, true);
}