Skip to content

Instantly share code, notes, and snippets.

@wykydtronik
Created August 2, 2016 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wykydtronik/ea3e262b1ba61e9cb03dc9dec676935d to your computer and use it in GitHub Desktop.
Save wykydtronik/ea3e262b1ba61e9cb03dc9dec676935d to your computer and use it in GitHub Desktop.
# revisions genocide
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 )
LEFT JOIN wp_term_taxonomy d ON ( b.term_taxonomy_id = d.term_taxonomy_id)
WHERE a.post_type = 'revision'
AND d.taxonomy != 'link_category';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment