Saturday 21 May 2011

How To Add Different Meta Tags to Each posts Blogger

To Add Different Meta Tags as Description and Meta Keywords to Different/Each Blogger Post Pages/Static pages/Archive Pages/Label Pages


META Description and Meta Keywords Tags for different post pages of blogger or for any websites, is a good habit to add it. In the Recent days meta keywords are not considered by major search engines like Google, Yahoo, MSN, AOL and many more. But we have noticed into Yahoo search engine some of my post pages are in the top result for it's keywords but the chances are still very less to considered different meta keywords into major search engines. But by adding meta keywords into your blogger posts, there is no any negative effect so I recommended that use meta keywords in blogger. Now we talk on the Meta Descriptions. Different Meta Description is very important for different post pages of blogger because meta descriptions can increase the click through rate (CTR) in the SERPs result to redirect to your websites because the well written meta description to the corresponding post, will show below your post title in the search result so visitor's clicks possibility will be higher. An example you can see below of my one post;

As you can see in the above preview, I am sure my blog post is on the first position of the front page of Google search among 17.4 Billions of traffic by its Meta Description. If you want to check my current post meta description and meta keywords then you can check by clicking on Meta Tag Analyzer. Just paste my current post url in the meta tag analyzer and click on Process URL then you will see my meta description and meta keywords and also you can check my any existing other posts and check , are they have different meta tags or not. Meta Description tells to the major search engine that what the page is all about and search engines can easily find your blog to the corresponding topic by it's meta description and if you don't add meta description to your blogger posts then mostly search engines generate automatically meta description by any phrases of your post. But if you used duplicate meta description for your every blogger post then it can be decrease your search engine ranking because of the duplication of your meta descriptions and search engines feels that your all post have the same topic. So I highly recommended that to use different meta description to your every posts. In wordpress blog you can write your meta description and meta keywords at the time of writing your post in post editor but in blogger you have to add some peace of code to your HTML code of blogger template.

If you have already installed any meta description and meta keywords to your HTML code of your blogger template then copy it to notepad and delete it from your HTML code of your blogger template. Don't worry about that we will cover different meta description and meta keywords. Let's see what will we cover in this post;

How to Add different meta descriptions and different meta keywords for each blogger posts.
How to Add different meta description and different meta keywords for each static pages of blogger.
How to Add different meta description and different meta keywords for each labels or archive pages of blogger.

Below is the CODE 1.1 just you have to paste into your HTML blogger template which will be the solution of all your problems as for your different posts, different static pages, different archive pages, different label pages of blogger and of-course for your home page and also I made it for the bloggers who have lot of posts as 200 or 300 or more than that posts basically some webmasters have given codes for different blogger posts by individually making meta description and meta keywords but if you have lot of posts then to make meta tags by individual it can be very lazy work to make different meta tags for each posts pages of blogger. But in the below code if you do write meta tags for any of your post into your HTML blogger template then it will be as you made but if you don't write any meta tags for a bunch of your posts ( let us 150 posts pages) then still these posts pages will contains the different meta description and meta keywords. So no matter you have lot of posts or you are just a new blogger. So know,

How to Add Different Meta Tags as Descriptions and Keywords in Different Posts Pages in Blogger


<!-- Meta Tags SEO Pack by http://www.bloggertipsseotricks.com for Bloggers -->
 <b:if cond='data:blog.pageType == &quot;item&quot;'>
Paste CODE 1.2 HERE-SEE BELLOW POST
<b:else/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<meta content='YOUR_HOMEPAGE_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_HOMEPAGE_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<meta expr:content='data:blog.pageName + data:blog.title + data:blog.pageName' name='description'/>
<meta expr:content='data:blog.pageName + data:blog.title + data:blog.pageName' name='keywords'/>
<b:else/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>

</b:if>
</b:if>
</b:if>

CODE 1.1


Now just replace YOUR_HOMEPAGE_DESCRIPTION_HERE with your description of your home page of the blog and YOUR_HOMEPAGE_KEYWORDS_HERE replace with you keywords of your home page of your blog now we will talk about the CODE 1.2, basically this code is corresponding to your posts pages so I have decided that I will construct it outside, for better understanding and then paste it into CODE 1.1 that's it! Suppose you have lot of posts and you want to add different meta descriptions and different meta keywords to your two posts only and still the rest of your posts also have different meta descriptions and meta keywords. So if you have lots of posts in your blogger blogs then you can make a strategy to add individually meta description and meta keywords to your different posts by adding meta tags to your some no. of posts every day. It is depend upon you. We are giving some example by adding meta tags to your two posts and rest of posts also will have different tags automatically.


<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/10/search-engine-optimization-tips-blogger.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/submit-site-search-engines-submission.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>

<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>


</b:if>
</b:if>

CODE 1.2


OR
Now suppose you want add individually meta tags to your third post then CODE 1.2 will be,

<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/10/search-engine-optimization-tips-blogger.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/submit-site-search-engines-submission.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<b:if cond='data:blog.url == &quot;http://www.bloggertipsseotricks.com/2010/11/swap-blogger-title-post-static-pages.html&quot;'>
<meta content='YOUR_DESCRIPTION_HERE' name='description'/>
<meta content='YOUR_KEYWORDS_HERE' name='keywords'/>
<b:else/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='description'/>
<meta expr:content='data:blog.pageTitle + data:blog.title' name='keywords'/>

</b:if>
</b:if>
</b:if>

CODE 1.2

So now similarly you can add individually different meta descriptions and keywords for your fourth, fifth, .. posts. So for adding for your fourth post look at the green color code in CODE 1.2 and take a difference form both CODE 1.2 shown above. how we add the third one and similarly add your fourth and fifth and so on.Make sure change the url which is in pink color with your post url.

Now copy CODE 1.2 and paste it into CODE 1.1 and then copy CODE 1.1.

just go to Blogger Dashboard --> Design --> Edit HTML  Expand Widget Templates
and find the code using [ctrl+F] <b:include data='blog' name='all-head-content'/> and below that code paste your CODE 1.1 and save Template.

You done!

6 comments:

  1. Nice post. You also can visit this site to get more clearly how to add meta tags in every blogger post. I found the following site more informative. How To Add Meta Tags To Your Blogger Blogs Here is easy tutorial with videos and pictures I found much relevant and helpful for me. Here in Click Here For More Information Use the link to get solution of adding Meta Tags in your Blogger Blogs every of individual posts. I am sure this page will help you a lot.

    ReplyDelete
  2. Thanks for writing this post. This helped me a lot in writing meta tags for my English Love Poetry and Romantic Images blog.

    ReplyDelete
  3. Nice post. You also can visit this site to get more clearly how to add meta tags in every blogger post. I found the following site more informative. How To Add Meta Tags To Your Blogger Blogs Here is easy tutorial with videos and pictures I found much relevant and helpful for me. Here in Click Here For More Information Use the link to get solution of adding Meta Tags in your Blogger Blogs every of individual posts. I am sure this page will help you a lot.

    ReplyDelete
  4. This isn't a good strategy for every blogger. It will just use your home page's meta tag. It will also keep your pages from getting a good rank in search engines.

    ReplyDelete
  5. I agree, meta tagging is a basic and effective strategy in White Label SEO technique. Thanks for the additional inputs.

    ReplyDelete
  6. I think the problem with this codes is diversity. Unlike WordpPress, Blogger has no plugins that can help in on-page optimization.

    seo hosting

    ReplyDelete