Improved WordPress Titles
November 24th, 2007
Shout out to Carlos Vella for showing how to change the blog title in WordPress. Here is my new code in header.php:
<title><?php if (is_home()) {
bloginfo('name');
} else {
wp_title('');
}?></title>
Ahh…that’s one less piece of clutter in my theme.