Web Tech Guide

www.blogsmonetize.com feed

How to Add Keywords and Description Tag for Each Individual Post for Blogger BlogSpot

 

Currently, BlogSpot generates the same keywords and description tag for all your post pages. Using the same description tag for every page is not an ideal situation or even worse, not search engine friendly. Thus, in order to have different keywords tag and description tag for each individual post for search engine. You have to modify your template. Modifying the description and keywords tag is not an easy job, but it is achievable. Since, you cannot access the detail of the post within the head tag. You have to code your meta tag manually.

1. Login to your account --> Design --> Edit HTML
2. Click on "Download Full Template" to backup your template.
3. Check "Expand Widget Templates"
4. Replace your keywords and description tag with the following code.


<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta name='description' content='Description of your blog'/>
<meta name='keywords' content='Keywords for your blog'/>
</b:if>
<b:if cond='data:blog.url == "http://www.blogsmonetize.com/2010/11/get-listed-in-google-search-engine.html"'>
<meta name='description' content='Description of this post'/>
<meta name='keywords' content='Keywords for this post'/>
</b:if>
<b:if cond='data:blog.url == "http://www.blogsmonetize.com/2010/11/title-tag-optimization-very-important.html"'>
<meta name='description' content='Description of this post'/>
<meta name='keywords' content='Keywords for this post'/>
</b:if>

As you can see, for each post, you have to make 1 if statement. So, you just have to update your description and keywords tag every time you make a new post. I know it is not an easy job, unfortunately, you have to do it manually.


© 11/17/2010 10:32:00 PM www.blogsmonetize.com
Loading related posts...

3 comments:

cus3 said...

Awesome post man, just what I was looking for!

Shiro said...

No problem :). Glad it helps you.

Unknown said...

Thanks Alotttttttttttttttttttttttttttt!

Post a Comment