Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created June 18, 2015 08:30
Show Gist options
  • Save jennimckinnon/d095359efcfb616c45a6 to your computer and use it in GitHub Desktop.
Save jennimckinnon/d095359efcfb616c45a6 to your computer and use it in GitHub Desktop.
Delete all stray and junk comments in WordPress.
SELECT * FROM wp_commentmeta WHERE comment_id
NOT IN (
SELECT comment_id
FROM wp_comments
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment