WordPress SEO : Optimize the WordPress Page Titles
Page-titles is one of the most important Search Engine Optimization (SEO) factors. WordPress out-of-the-box page-titles behavior is not optimal and WordPress page-titles SEO can be improved dramatically. Page-titles are easy to optimize by quickly tweaking your WordPress installation and following a few simple guidelines.
To make page-titles more SE friendly :
- Page-titles should be different for every page.
- Page-titles should be descriptive of what the post is about.
- Page-titles should include the keywords that you're targeting in your post.
To achieve that here are a few methods for WordPress :
Manually editing page-titles in the WordPress theme
The following code will display "Page title for blog homepage" on your homepage (change to whatever suits your homepage), and the post title followed by "|" and the blog name (like "Wordpress SEO | fiLi's tech").
<title>
<?php if (is_home()) {
print "Page title for blog homepage";
} else {
wp_title(' ');
print " | " bloginfo('name');
} ?>
</title>
Using a page-title SEO WordPress plugin
To make things easier, there are a few WordPress plugins that will take care of Page-titles SEO for you :
- I use and recommend SEO Title Tag.
- Optimal Title
-
Guidelines : After you make those changes, the most important thing to remember is to give your posts proper titles - don't use smart-ass too-clever titles when you can use simple titles, descriptive of your post, that both humans and search-engines will understand.

Pingback: 10 Great WordPress SEO Articles — www.aruntheace.com