/ Published in: SQL
URL: http://lesterchan.net/wordpress/2008/07/17/how-to-turn-off-post-revision-in-wordpress-26/
Delete WordPress post revision from DB. If, eventually, you need to… (:
Expand |
Embed | Plain Text
DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) WHERE a.post_type = 'revision'
You need to login to post a comment.
