Wordpress Page Title Has To Be SEO Friendly
Thursday, May 8th, 2008Page Title is one of many components which is mean so important to increasing our blog traffic. Page Title should be SEO (search Engine Optimization) friendly, so that will appear at the first page of search engine result, in other words can be say it must be has good SERP. Here I will discuss about how the way to make your Wordpress Page Title SEO friendly.
By default, Wordpress sets your page title to be like this:
"BlogName ? Blog Archive ? Post Title"
In my experience, good Page Title is to shows the Post Title at first then we can shows our Home Page Title to Optimize the main keyword, it can be like this “Post Title” with “Blog Name”. This is because:
- Search engines use Page Title as the linking text in its Search Engine Results Page (SERP).
- The search keywords are bolded for Page Titles in search engines.
- It makes easier for search engine users to know right away if what they are looking for is correct ones.
For that purpose, we have to make a little modification to “Header.php”. Find this:
<?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> ? Blog Archive <?php } ?> <?php wp_title(); ?>
and replace with:
<?php wp_title(' '); ?><?php if(wp_title(' ', false)) { echo '–'; } ?><?php bloginfo('name'); ?>
We’re done, and we have the Page Title which SEO Friendly!
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting! And please feel free to comment.



