WORDPRESS SEO TITLE TAG FOR BETTER GOOGLE INDEX
Posted by Ryu | Posted in Wordpress | Posted on 09-06-2010 | 1 Comments
Wordpress SEO title tag for CMS or wordpress-based blogs can be used without having to use the plugin. Please edit the title tag in header.php. By using this tag title then the title of the homepage more SEO and also on a single page. Open your Cpanel and edit header.php on your template folder
Find the code between Tag title <title> Replace your title tag with
a few code
The following code:
<title>
<?php if (is_home () ) {
bloginfo(‘name’); echo ‘ – ‘ ; bloginfo(‘description’);
} elseif ( is_category() ) {
single_cat_title(); echo ‘ – ‘ ; bloginfo(‘name’);
} elseif (is_single() ) {
single_post_title();
} elseif (is_page() ) {
bloginfo(‘name’); echo ‘: ‘; single_post_title();
} else {
wp_title(”,true);
} ?>
</title>
Looking so smooth in my blog, and I implement this code and have better google index page









Some can not understand, but I believe the future will be able to understand!