Yanıtlar:
Kullanabilirsiniz wp_delete_post
.
"Çöp kutusu" durumuna sahip tüm yayınları almak için:
$trash = get_posts('post_status=trash&numberposts=-1');
Sonra:
foreach($trash as $post)
wp_delete_post($post->ID, $bypass_trash = true);
Bu benim için işe yaramadı. Aşağıdakileri yapmak zorunda kaldım:
$args = array(
'posts_per_page' => -1,
'post_status' => 'trash'
);
$trash = get_posts($args);
foreach($trash as $post)
{
wp_delete_post($post->ID, true);
}