Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created June 18, 2015 08:09
Show Gist options
  • Save jennimckinnon/b1b9e1e21a799263a6bc to your computer and use it in GitHub Desktop.
Save jennimckinnon/b1b9e1e21a799263a6bc to your computer and use it in GitHub Desktop.
Clear out unused tags from WordPress.
DELETE FROM wp_terms wt
INNER JOIN wp_term_taxonomy wtt ON wt.term_id = wtt.term_id WHERE wtt.taxonomy = 'post_tag' AND wtt.count = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment