Wednesday, August 21, 2013

Have Distinctive Meta Tags For Each And Every Post of Blogger

You may want to ask, Why exactly we should have  Different Meta Data For Every Single Post of Google Blogger? Well, By default in case you are incorporating Meta Data to blogger web template, subsequently your entire web page which includes home-page will likely have exactly the same Meta Tags Details. So would it be incorrect? No. It's simply whenever you submit your blog post to Google then you'll definitely have redundant meta data description. Different Meta data Description in every post tend to be more Google friendly.

Here is the Step-by-step Guide to incorporate Different Meta tags description Per Each Post inside your blogger blog. I have tried to explain in very simple manner so that no one should face any challenge while doing this.


STEP 1: Go to Post list page or the back-end page of your blog.

STEP 2: Click template and then click Edit in HTML (find the attached screenshot below)

STEP 3: Find the code which is given below in your template code :


<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:skin><![CDATA[/*

STEP 4: Replace the above code with the code given below.


<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<b:skin><![CDATA[/*

STEP 5: Now find this code line

<b:include data='blog' name='all-head-content'/>

STEP 6: Add the following code below the code line which you found in STEP 5.

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Your home page description' name='description'/>
<meta content='Your keywords, keywords1, keyword2' name='keywords'/>
</b:if>

STEP 7: Now:

Your home page description = Replace with your description of the page. 
Your keywords, keywords1, keyword2 = Replace them with your required keywords.

STEP 8: Save your template and with this step you have added meta tags to your blog URL.

STEP 9: For adding meta tags to your post, when you are creating the post, click the HTML button and add the following code:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<meta expr:content='data:blog.pageTitle' name='Your Blog Post Page Title Description'/>
<meta expr:content='data:blog.pageName + &quot;, Your keywords, keywords1, keyword2 &quot;' name='keywords'/>
</b:if>

STEP 10: Now:

Your Blog Post Page Description = Replace it with your page title description
Your keywords, keywords1, keyword2 = Replace them with your required keywords for your title post.

The very first code is Meta data description along with keywords for use on your blogspot home page and then the second is unique Meta tags description and even keywords for every single post in blogger.

If you have any doubts please leave them as your comments I will surely help you on that.

No comments:

Post a Comment