Delete Revision


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. DELETE a,b,c FROM wp_posts a
  2. LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
  3. LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
  4. WHERE a.post_type = 'revision'

URL: http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.