-
-
Save saas786/bb2c733cb9a6a7a04132a85bb38188db to your computer and use it in GitHub Desktop.
Delete orphan postmeta and attachment in WordPress database
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 orphan postmeta | |
DELETE pm | |
FROM wp_postmeta pm | |
LEFT JOIN wp_posts p ON pm.post_id = p.ID | |
WHERE p.ID IS NULL | |
; | |
-- Delete orphan attachment | |
DELETE p1 | |
FROM wp_posts p1 | |
LEFT JOIN wp_posts p2 ON p1.post_parent = p2.ID | |
WHERE p1.post_parent > 0 AND p1.post_type = 'attachment' AND p2.ID IS NULL | |
; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment