Skip to content

Instantly share code, notes, and snippets.

@bennybennet
Created November 10, 2014 12:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennybennet/c47a1a86dc1bd448413e to your computer and use it in GitHub Desktop.
Save bennybennet/c47a1a86dc1bd448413e to your computer and use it in GitHub Desktop.
Delete All Revisions Of Post Of Which Are Published
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)
INNER JOIN (SELECT * FROM wp_posts WHERE post_status = 'publish') d
ON a.post_parent = d.ID
WHERE a.post_type = 'revision'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment