Do you ever put category and tag descriptions while creating them? I used to do it in the beginning, but then as I got busy I started simply inserting tags and categories without any descriptions attached to them. Over time, I was getting a little annoyed by the fact that some categories and tags have names, while others do not, so I created a quick SQL code to take care of this issue. Basically, the SQL code just goes through all WordPress tags and categories and copies the category/tag name into the description field.
Make sure to backup your database before you do this!
Here is the code for updating category description:
UPDATE wp_term_taxonomy LEFT JOIN wp_terms ON wp_term_taxonomy.term_id = wp_terms.term_id SET wp_term_taxonomy.description = wp_terms.name WHERE wp_term_taxonomy.taxonomy = 'category'
And here is the code for updating tag description:
UPDATE wp_term_taxonomy LEFT JOIN wp_terms ON wp_term_taxonomy.term_id = wp_terms.term_id SET wp_term_taxonomy.description = wp_terms.name WHERE wp_term_taxonomy.taxonomy = 'post_tag'

