Help with adding conditional title tags to header.php
See codex page for category conditional tags – http://codex.wordpress.org/Conditional_Tags#A_Category_Page You can use them like so: <title> <?php if ( is_category( ‘1’ ) ) echo ‘This is the news category’; ?> </title>