• RSS
  • Twitter

Tuesday, February 22, 2011

Change Blogger Title Tags


Remove the name of your blog from the page title of your posts by swapping blogger titles for better search engine (SEO) implementation and displaying post name instead of blog name. It will helps to increase yours traffic through search engines. Only you need to change yours Blogger title tag html code.

Blogger always adds your blog name to the page title of all your posts? This will sometime lead to decreasing of yours blog traffic or sometime not index in Google. This problem is suffer mainly by those who generally used long URL. So to solve this problem you have to change yours template code.


Generally we change blogger titles after moving to Dashboard -> Setting -> Basic. But this is not enough to increase yours blog traffic for this you have to Edit yours html template.

  1. To do this, go to Layout > Edit HTML in your Dashboard.
  2. Search for <title><data:blog.pagetitle/></title>. It should be near the top.
  3. Replace that with this piece of code.
<b:if cond= 'data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>

That’s it! Save and view your work.

After changed of this tag, you’ll see that on post pages, the default [blog name] post title format for your post titles in the browser window will be replaced by your post title instead. If you’re in the main page, your page title is your blog name. If you visit one of your posts, the page title would be the post title.

0 comments:

Post a Comment