web-dev-qa-db-ja.com

プログラムでゴミ箱を空にするにはどうすればいいですか?

プラグインの中に「ゴミ箱を空にする」ボタンを作成する必要があります。 PHPコードを使用してどのようにしますか。

10
Ciprian

wp_delete_post を使用できます。

「ゴミ」ステータスの投稿をすべて取得するには

$trash = get_posts('post_status=trash&numberposts=-1');

その後:

foreach($trash as $post)
  wp_delete_post($post->ID, $bypass_trash = true);
9
onetrickpony

これは私にはうまくいきませんでした。私は次のことをしなければなりませんでした:

$args = array(
'posts_per_page'   => -1,
'post_status'      => 'trash'
    );

$trash = get_posts($args);

foreach($trash as $post)
{
    wp_delete_post($post->ID, true);      
}
0
Brett Drake