Guest User

Untitled

a guest
Jan 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. -- delete all revisions
  2. DELETE FROM wp_posts WHERE post_type = "revision";
  3.  
  4. -- delete all revisions from a particular post (replace 999 with your post id)
  5. DELETE FROM wp_posts WHERE post_type = "revision" and post_parent = 999;
Add Comment
Please, Sign In to add comment