2010 February

Delete un-used tags in Wordpress

Open phpMyAdmin, make a backup of your database first

Find all un-used tags

SELECT * 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;

[ Read the rest ... ]

By admin on February 24, 2010 | Posts | A comment?
Tags: ,