Created
October 26, 2017 21:29
-
-
Save felipeelia/cd9142c3ce7e9eb89f44e4cdd6883c41 to your computer and use it in GitHub Desktop.
Delete ALL Posts, Meta and Terms Relationship of a Certain Post Type (Use With Caution)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = '<POST_TYPE>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment