Skip to content

Instantly share code, notes, and snippets.

@Hunter-WebDev
Created October 19, 2017 10:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hunter-WebDev/f3ee8206628cce15b5b7d43dd695948f to your computer and use it in GitHub Desktop.
Save Hunter-WebDev/f3ee8206628cce15b5b7d43dd695948f to your computer and use it in GitHub Desktop.
Delete orphaned post meta within WordPress
DELETE pm FROM wp_postmeta pm
LEFT JOIN wp_posts wp ON wp.ID = pm.post_id
WHERE wp.ID IS NULL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment