Skip to content

Instantly share code, notes, and snippets.

View bennybennet's full-sized avatar

Benny Bennet Jürgens bennybennet

View GitHub Profile
@bennybennet
bennybennet / gist:c47a1a86dc1bd448413e
Created November 10, 2014 12:39
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'