Created
February 7, 2019 21:12
-
-
Save bookchiq/7ab7ff53d1a67c459a67967a36a9b616 to your computer and use it in GitHub Desktop.
WordPress: delete Featured Image relationships if the image no longer exists in the Media Library
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 pm | |
FROM wp_postmeta pm | |
LEFT JOIN wp_posts wp ON wp.ID = pm.meta_value | |
WHERE wp.ID IS NULL AND pm.meta_key = '_thumbnail_id'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment