Skip to content

Instantly share code, notes, and snippets.

@bookchiq
Created July 10, 2020 17:02
Show Gist options
  • Save bookchiq/9de974b0fa56a7abff45d4be88b3c381 to your computer and use it in GitHub Desktop.
Save bookchiq/9de974b0fa56a7abff45d4be88b3c381 to your computer and use it in GitHub Desktop.
SQL to delete orphaned postmeta in 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