Wednesday, December 16, 2009

How To Insert Meta Tags In Blogspot for Every Post


Adding Meta tags is one the good procedure for SEO. These meta tags should be unique for each posts and that makes the search engines to know more about your individual blog posts and make them crawl and index your pages better and it also improves your Search engine rankings.

Procedure to add meta tags -

This is for Home Page

Login to Blogger > Layout > Edit HTML.

Search for following

<b:include data='blog' name='all-head-content'/>

Add following code JUST BELOW above line


<b:if cond='data:blog.url == "http://helptoblogger.blogspot.com/"'>
<meta content='DESCRIPTION' name='description'/>
<meta content='KEYWORDS' name='keywords'/> </b:if>


Now procedure to add meta tag to any post of your website

 e.g.http://helptoblogger.blogspot.com/2009/12/how-to-insert-meta-tags-in-blogspot-for.html


<b:if cond='data:blog.url == "http://helptoblogger.blogspot.com/2009/12/how-to-insert-meta-tags-in-blogspot-for.html"'>
<meta content='Type you post description here.' name='description'/>
<meta content='Type, the, post, keywords, here' name='keywords'/>
</b:if>

Repeat the above step for each posts which are you want to add different 'keywords' and 'descriptions'.