9 사용할 수 있습니다 wp_delete_post. "휴지통"상태 인 모든 게시물을 가져 오려면 : $trash = get_posts('post_status=trash&numberposts=-1'); 그때: foreach($trash as $post) wp_delete_post($post->ID, $bypass_trash = true); — 오 트릭 소스 건배! 효과가있다! — Ciprian
1 이것은 나를 위해 작동하지 않았습니다. 나는 다음을 수행해야했다. $args = array( 'posts_per_page' => -1, 'post_status' => 'trash' ); $trash = get_posts($args); foreach($trash as $post) { wp_delete_post($post->ID, true); } — 브렛 드레이크 소스