プラグインの中に「ゴミ箱を空にする」ボタンを作成する必要があります。 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);
}