One of the ways to make your blog more search engines friendly is to take cate of your <title> tag. That’s what’s showin in the browser’s window title. By default, wordpress shows Blog name on the homepage and [BolgName] > Blog archive > [PostTitle] on the posts page (the most important to us). Best variant is to show only post title or ctegory title in the <title> tag, without any blog name. Best variant to do this is to install All in one SEO Pack and configure everything there. However, if you can’t/don’t want do this, you can do one simple change.
- Go to Design->Theme Editor if you have version less, than 2.7 or Appearance -> Editor if you have 2.7.
- Choose file header.php
- Find line <title>…..
- Replace this line with these two:
-
-
<?php if (($t = wp_title(" ", false)) == ”){$t = get_bloginfo(‘name’);} ?>
-
<title><?php echo $t; ?></title>
-
-
- You’re done!









