Why change the title of your blog pages?
You know that search engines such as Google and Yahoo take webpage titles into account in order to pull keywords out. Now, the title of every page of your blog is constituted by two parts:
- a fixed part, indicating your blog title (i.e. “Franciov Weblog“);
- a variable part, indicating your page/post title (i.e. “Why (and how to) change the title of your blog pages (in Wordpress)“).
Using some good sense, you can realize by yourself that the most important keywords are located in the variable part of the title, that is the one containing the most relevant words of your post. Therefore moving the variable part before the fixed one doesn’t seem to be a bad idea.
How to change the title of your Wordpress blog pages?
Here is my solution. It creates the title of your pages in the following way: (page name) – (blog name).
<?php wp_title(''); ?>
<?php if(wp_title(' ', false)) { echo ' - '; } ?>
<?php bloginfo('name'); ?>
How to change the title of your Blogger2 blog pages?
Have a look here.