::. How to add Different Meta tags in Different blogger posts?
First,you need to sign in to Blogger.com
- After you sign in;on the dashboard,click Layout -> Edit HTML
- Next,keep your eyes open and find this line:
<b:include data='blog' name='all-head-content'/>
4.And you can add this code,just below that line above:
_____________________________________________________________________________________________________
<b:if cond='data:blog.url == "http://how-tipsandtricks.blogspot.com/"'><meta content='DESCRIPTION' name='description'/>
<meta content='KEYWORDS' name='keywords'/> </b:if>
_____________________________________________________________________________________________________
5.Look, those three line that you have added before is used to add meta tags to your homepage.(change the http://how-tipsandtricks.blogspot.com/ become your blog URL.
6.And now we attempt to add different meta tags(including meta description and keywords) on different posts. For example i want to add meta tags for my
http://how-tipsandtricks.blogspot.com/2009/05/how-to-sumbit-blogger-sitemap-to-google.html
7.What you have to do is copy-pasting those three lines (which you have added before) below the present code and change the link,description,and also the keywords that suite to your posts content. So, the HTML code should look like this:
_____________________________________________________________________________________________________
<b:if cond='data:blog.url == "
http://how-tipsandtricks.blogspot.com/"'>
<meta content='DESCRIPTION' name='All computer tips'/>
<meta content='KEYWORDS' name='computer tips,internet tips,free software'/> </b:if>
<meta content='DESCRIPTION' name='All computer tips'/>
<meta content='KEYWORDS' name='computer tips,internet tips,free software'/> </b:if>
<b:if cond='data:blog.url == "http://how-tipsandtricks.blogspot.com/2009/05/how-to-sumbit-blogger-sitemap-to-google.html"'>
<meta content='DESCRIPTION' name=How to submit blogger sitemap to google '/>
<meta content='KEYWORDS' name=submit,sitemap,blogger,google,how to '/> </b:if>
_____________________________________________________________________________________________________
8.And if you want to add another meta tags to other postings,just do the same easy procedures explained above.
No comments:
Post a Comment