Last active
September 29, 2021 19:27
-
-
Save bookchiq/ec951d634b8d3f108a2adf1e1dcb5f9a to your computer and use it in GitHub Desktop.
Sometimes when using the WordPress importer, featured images aren't _quite_ imported but report that they were, throwing off has_post_thumbnail() results. This SQL checks if the "connected featured image" actually exists, and if not, removes the half-there connection.
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 | |
pm.meta_key = "_thumbnail_id" AND | |
wp.ID IS NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment