Come posso svuotare programmaticamente la spazzatura?


10

Devo creare un pulsante "Svuota cestino" all'interno del mio plugin. Come lo farei usando il codice PHP?

Risposte:


9

È possibile utilizzare wp_delete_post.

Per ottenere tutti i post con lo stato "cestino":

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

Poi:

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

Saluti! Funziona!
Ciprian,

1

Questo non ha funzionato per me. Ho dovuto fare quanto segue:

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

$trash = get_posts($args);

foreach($trash as $post)
{
    wp_delete_post($post->ID, true);      
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.