
Wordpress: nem használt címkék törlése
Ha sok a nem használt címke a Wordpress-ben és macera őket egyesével törölni, akkor SQL-ből (pl. a phpMyAdminon keresztül) lehet őket kitörölni:
DELETE FROM wp_terms WHERE term_id IN (SELECT term_id FROM wp_term_taxonomy WHERE count = 0 );
DELETE FROM wp_term_relationships WHERE term_taxonomy_id not IN (SELECT term_taxonomy_id FROM wp_term_taxonomy, wp_terms WHERE wp_terms.term_id=wp_term_taxonomy.term_id);
http://wordpress.org/support/topic/238740