Wednesday, 4 February 2015

// // Leave a Comment

How To SEO Optimize Your Blogger Blog Title For Better Search Results

Post titles are the most important part of SEO because it is the first thing at which visitors look and decides whether to click on it or not. A title rich in keywords can bring you more traffic. But, in the case of blogger using a default template, the title is not optimized correctly. It shows post title after blog title everytime you open a post. As a new blogger you may not be aware of its consequences but it actually not good for your blog. You must be losing some visitors due to this.

For better understanding look at this example


Here Cricket Updates is the name of the blog and India vs England is the name of the post. But the blog name is showing before the post title. It is affecting your blogs SEO. You should solve this problem to improve the earch results of your blog.

Optimize Your Blog Title For Better Search Results


Step 1 : Login to your blogger account. Go to "Template" and then click on "Edit HTML".


Step 2 :  Now click anywhere inside the code box and using Control+F keys, open search box.



Step 3 : Write the following code given below in the search box and hit enter button to find it.
  <title><data:blog.pageTitle/></title>


Step 4 : Now remove the highlighted or searched code. And the paste the following code given below on the same place where you are removing this code.
 <b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>

Step 5 : Click on the Save template and you are done with it. Now your post will be shown without the title of your blog.