Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. ini_set('memory_limit', '2056M');
  2. ini_set('max_execution_time', 900);
  3.  
  4. $params = array(
  5. 'posts_per_page' => 1000,
  6. 'post_type' => 'attachment'
  7. );
  8. $q = new WP_Query( $params );
  9. if( $q->have_posts() ) :
  10. while( $q->have_posts() ) : $q->the_post();
  11. wp_delete_post( $q->post->ID, true );
  12. endwhile;
  13. endif;
  14. wp_reset_postdata();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement