On most of the wordpress theme, the blog title is set up like this in the Header.php file :

<title><?php bloginfo(’name’); ?><?php wp_title(’–’); ?></title>

Here, first one is the name of the blog and second is the title. But putting the title of the page first will help you for Search Engine Optimization (SEO). And again, it will also make reading your blog stats in Google easier when you view Content by Titles.

Thats why its better to change the above code to:

<title>

<?php wp_title(’ ‘); ?>

<?php if(wp_title(’ ‘, false)) {echo ‘-’;} ?>

<?php bloginfo(’name’) ?>

</title>

This will put your title of your entry before your blog name when the entry is identified by Google.

Popularity: 32% [?]