How to add unique Meta Description in blogger all Label pages, as we know we can add unique Meta description in blogger all post but what about label pages. Friends when we use blogger adding unique Meta description feature so in this condition our homepage and label pages description is same so what we do for make them deference (Homepage and Label page description).
What’s importance of unique Meta description?
We can say Meta description is summary of our post or page this description help to viewer to know which kind of this page have.
Meta description show by Google or many search engines in search result below title this content help to viewer for know more about our page.
Follow below link for know how to add or enable unique Meta description option in blogger.
Here we go
For resolving homepage and label page same description problem I modified some part description code.
New Code
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.metaDescription !=
""'>
<meta
expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<b:else/>
<meta
expr:content='data:blog.pageName + data:blog.metaDescription'
name='description'/>
</b:if>
|
Old Code
<b:if cond='data:blog.metaDescription != ""'>
<meta
expr:content='data:blog.metaDescription' name='description'/>
</b:if>
|
You need to replace your old code with new code as above given.
Note: - May be your old code some part is deference so just replace similar code.
Important Note: - Before changing in template HTML coding always take a template backup file.
How to new code work ?
This new code add Label page name with Description.
Suppose your Blog is related to Mobile specification and your homepage description is “latest mobile specification and reviews or prices” and you have label like Nokia, Samsung, etc so our new code will show you description in Nokia label page like “Nokia... Latest mobile specification and reviews or prices” so now you may understand what our new code do this code adds label page name with old description.