Thursday 26 November 2009

How to add different meta tags for each individual posts -blogger


Why word press is consider as better blogging  than blogger is due to the fact that it allow us to add different meta tags for every individual posts by just installing plugins such as all in one seo wordpress plugin.
Now you can reduce this gap to some extent by using this tricks by which you can add meta tags for all individual posts.
Lets start this process :
1.Open blogger and login .
2.Navigate through Layout >> Edit Html
3.Click on Expand widget template : Expand widget template.
4.Use your browser search to find <head> 
5.Now paste the following code below <head> 


<b:if cond='data:blog.url == "enter the url of the post here"'>
<META NAME="keywords" CONTENT="enter keywords here separated by comms" />
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"/>
</b:if>

Note : Please note that for each post you have to add this code again by writing the post URL (link) and keywords.
Some thing like this : first one is for your home page and the remaining for your individual posts.

<b:if cond='data:blog.url == "http://myfundoo-blog.blogspot.com/"'>
<META NAME="keywords" CONTENT="Fun with blog,blogger tricks ,blogger tips,blogger tools,widgets,blogger tutorials," />
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"/>
</b:if>
<b:if cond='data:blog.url == "http://myfundoo-blog.blogspot.com/2009/11/how-to-add-display-or-insert-orkut.html"'>
<META NAME="keywords" CONTENT="orkut,orkut share" />
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"/>
</b:if>
<b:if cond='data:blog.url == "http://myfundoo-blog.blogspot.com/2009/11/how-to-make-rounded-corners-in-your.html"'>
<META NAME="keywords" CONTENT="rounded corners,without using image" />
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"/>
</b:if>
<b:if cond='data:blog.url == "http://myfundoo-blog.blogspot.com/2009/11/simple-javascript-to-display-date-and.html"'>
<META NAME="keywords" CONTENT="date and time widget,blogger,javascript" />
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"/>
</b:if>

6.Save your template once you have finished adding meta tags.

No comments:

Post a Comment