플러그인 안에 “빈 휴지통”버튼을 만들어야합니다. PHP 코드를 어떻게 사용합니까?
답변
사용할 수 있습니다 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);
}