जवाबों:
आप उपयोग कर सकते हैं wp_delete_post
।
"कचरा" स्थिति के साथ सभी पोस्ट पाने के लिए:
$trash = get_posts('post_status=trash&numberposts=-1');
फिर:
foreach($trash as $post)
wp_delete_post($post->ID, $bypass_trash = true);
यह मेरे लिए काम नहीं किया। मुझे निम्नलिखित कार्य करने थे:
$args = array(
'posts_per_page' => -1,
'post_status' => 'trash'
);
$trash = get_posts($args);
foreach($trash as $post)
{
wp_delete_post($post->ID, true);
}