Skip to content

Instantly share code, notes, and snippets.

@carlosleopoldo
Created April 12, 2016 23:34
Show Gist options
  • Save carlosleopoldo/ce2881113af5947e07deca0579ad2c06 to your computer and use it in GitHub Desktop.
Save carlosleopoldo/ce2881113af5947e07deca0579ad2c06 to your computer and use it in GitHub Desktop.
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