Advertisement
kremisoski

Delete All Wordpress Images

Sep 25th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.18 KB | None | 0 0
  1. DELETE FROM wp_postmeta
  2. WHERE post_id IN
  3. (
  4. SELECT id
  5. FROM wp_posts
  6. WHERE post_type = 'attachment'
  7. )
  8. ;
  9.  
  10. #Then once executed,
  11.  
  12. DELETE FROM wp_posts WHERE post_type = 'attachment'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement