Improved WordPress Titles

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.


Comments are closed.