Category Titles
I found a great tip over at The Bombsite that does something that I had been wanting to do. It allows you to display the category title on a category archive page. So if you click on the WordPress category link at the end of this post, the next page will have WordPress as a title, instead of saying only Blog Archive. It is a bit more clear like this, I think. The function that does this is
get_the_category_by_ID()
used as such:
if(isset($cat)) { echo get_the_category_by_ID($cat);}
Pretty simple. Now to figure out how to do this for date archives.