Tuesday, December 29, 2009

How to add different meta tags to different blogger blog posts

Well, sometimes you may think about your site meta tags, particularly you may want to add certain meta tags for different page for your websites. Whenever it comes to blog particually, blog posts of your blogger account you may wonder how to add metatags for different blog posts . As blogger blog engine is not open source so customization sometimes may be difficult and thus adding meta tags are difficult too.

Before looking into how to add meta tags there are some misconception presents regarding meta tags which need clarification. One of them is,

- "Does Google ever use the "keywords" meta tag in its search engine ranking"?
The answer is a big NO. Google never uses keywords meta tag for its search engine ranking. There are millions of websites containing meta tags with LEYWORDS. Google simply visit the site and ignore the meta tags. So simply "keywords" meta tags has no effect in google search engine ranking.

Another misconception present is,
- "Does Google completely ignores all metatags"?
The answer is NO. Though Google completely ignores "keywords" meta tag but it does not completely ignore the description meta tag. Google sometimes use the "description" meta tag as the text for the search results snippets which means it displays description part text while displaying the search results. It is like after we search for a word the page description text is displayed in the search results snippets. So it may attract user to click your link based on your attractive description meta tag.

Note that google do it sometimes but always remember that description meta tag has no effect in google search engine ranking.

Despite there is no search engine ranking effect by Google, still many ones like to add keywords and description meta tags for their site as well as for the blogger blog.
For the webpage the system is easy.
Within the <head> section you need to add META information like below.

<head>
<META NAME="keywords" CONTENT="Add metatgs blogger blog tips" >
<META NAME="Description" CONTENT="Blogger tips about adding metatag Information to a blog post.>
</head>

But for blogger post there is no shortcut ways. You need to follow following steps in order to add different meta tags to your different blogger blog posts.


Step 01: Sign in to Blogger dashboard » Layout » Edit html
and find out the following line within html.
<b:include data='blog' name='all-head-content'/>

Step 02: Add following codes just below above line
<b:if cond='data:blog.url == "http://arjudba.blogspot.com/"'>
<meta content='Arju's blog discussion with many IT stuffs. Oracle database, Php programming, shell script,
css+html, unix administration, Internet Marketing, Search engine optimization.' name='description'/>
<meta content='SEO Blogging Tips Oracle Mysql' name='keywords'/> </b:if>

In this stage your template will look like below.
<head>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:if cond='data:blog.url == "http://arjudba.blogspot.com/"'>
<meta content='Arju's blog discussion with many IT stuffs. Oracle database, Php programming, shell script,
css+html, unix administration, Internet Marketing, Search engine optimization.' name='description'/>
<meta content='SEO Blogging Tips Oracle Mysql' name='keywords'/> </b:if>
<b:skin><![CDATA[/*
* Blogger Template Style
Next Step: So now you have added meta tags for your homepage in this stage. In the same way you can add as many as keywords
and description meta tags for your blog post.
For example if we also like to enter meta tags for post
http://arjudba.blogspot.com/2009/11/affordable-search-engine-optimization.html
then our blog html will look like following.
<head>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:if cond='data:blog.url == "http://arjudba.blogspot.com/"'>
<meta content='Arju's blog discussion with many IT stuffs. Oracle database, Php programming, shell script,
css+html, unix administration, Internet Marketing, Search engine optimization.' name='description'/>
<meta content='SEO Blogging Tips Oracle Mysql' name='keywords'/> </b:if>

<b:if cond='data:blog.url == "http://arjudba.blogspot.com/2009/11/affordable-search-engine-optimization.html"'>
<meta content='Link building service, SEO packages' name='description'/>
<meta content='Affordable SEO packages. Silver, Gold, bronze, Diamond, Platinum Packages.' name='keywords'/> </b:if>

<b:skin><![CDATA[/*
* Blogger Template Style
Through above way, you can add as many as keywords and description meta tags for your blog posts as you like.

Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html

No comments:

Post a Comment