Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wgstjf/0fc977814c0c55877bdec00c888b2ff0 to your computer and use it in GitHub Desktop.

Select an option

Save wgstjf/0fc977814c0c55877bdec00c888b2ff0 to your computer and use it in GitHub Desktop.
WP: Delete all orphans post meta in WordPress Raw
DELETE FROM wp_postmeta
WHERE post_id NOT IN (
SELECT ID FROM wp_posts
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment