Add Different Meta Tags to Different Blog Posts Like WordPress Blogs

Adding Different Meta Description tags to every post will make your blog stand unique in the Search Engine Result Pages (SERPs). WordPress users has got some plugins that will automatically add meta descriptions to each and every post by extracting some information from the post. But, this facility was not available in blogspot blogs. There is a trick to add different meta tags for different blogger posts which you should do manually.

What’s the Actual Use of Adding different meta description tags to different Blogspot Posts?
Even though Google doesn’t consider the Meta keyword Tags, the description tag is used as a Snipplet which will be displayed underneath your title in SERPs. It is very good for SEO (Search Engine Optimization) . Actually, this is to tell search engines what our page is all about… but, using same meta description tags to all of your blog posts reduces the search engine rankings and traffic little bit.
But, adding different unique meta tags to different Blog posts will make it unique and allow the search engines to know more about your individual blog posts and make them crawl and index your pages better.
How to add Unique Meta Tags to Each and Every Blog Posts?
To do so, you have to add some pieces of code to your blogger templates.
1]First Sign in to Blogger dashboard » Layout » Edit html
and find this line
<b:include data=’blog’ name=’all-head-content’/>
2] Now, add the below code just below the above line
<b:if cond=’data:blog.url == &quot;http://itechboy.blogspot.com/&quot;’>
<meta content=’Your description’ name=’description’/>
<meta content=’Your keywords’ name=’keywords’/>
</b:if>
Replace “http://itechboy.blogspot.com” with your particular blog post.
Write this code for as many posts you want like below.
If you want to add meta description for another post, for example : http://itechboy.blogspot.com/2012/04/add-different-meta-tags-to-different.html
Now, what you have to do is paste the above 3 lines below the present code and change the link,description and keywords.
So, the final code now looks something like
<b:include data=’blog’ name=’all-head-content’/>
<b:if cond=’data:blog.url == &quot;http://itechboy.blogspot.com/&quot;’>
<meta content=’iTechboy is a technology blog where you can find tips and tricks related to blogging.’ name=’description’/>
<meta content=’blogger tips, blogger tricks, blogging tips, how to blog’ name=’keywords’/>
</b:if>
Same as the above steps, you can add different meta tags to as many blog posts as you can.

No comments:

Post a Comment