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.
3 comments:
Awesome post man, just what I was looking for!
No problem :). Glad it helps you.
Thanks Alotttttttttttttttttttttttttttt!
Why not leave a comment? No matter what, I'd love to hear from you!
Post a Comment