We Are Inviting Guest Writers,If Interested, please send your complete article to contact@livetricks.in

Wednesday, October 5, 2011

SEO Friendly Title Tag For Blogger


             Back to you with a new blogger tricks. This is basically a hack for blogger to make your blog SEO friendly. By default blogger shows your post title after your blog title, which is not a good practice in SEO. Google or other search engines takes the title tag as a criterion while crawling your website. So in the case of blogger, as it shows your blog tile first followed by your post title, but this hack will show you how you can show your post title first followed by your blog title, or if you want to show only post title instead of both then I will show you how to do this. Please follow the below steps to make your blog Search Engine friendly:


  • Open your blogger dashboard.
  • Click on design
  • Click on edit HTML
  • Now search for this code in the template.

<title><data:blog.pagetitle/></title>


  • Replace above code by this, if you want to show post title followed by blog title.

<b:if cond='data:blog.pageName == &quot;&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>

  • Replace the same code by this if you want to show only post title.

<b:if cond='data:blog.pageName == &quot;&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>

       And save the template. That’s it, you are done, for any query or suggestion please make a comment in comment section or fill up the contact form in contact us section, waitng for your comment and suggestion.