Thursday, July 11, 2013

How to optimize descriptions for SEO -Blogger-

2 : On Page SEO Description






Unfortunately, the default mode for Blogger templates is that all pages are described by  same Description , For this Google warns site owners of this error , and despite this warning Many people fall into the error by placing code description in the following way : 


Find CODE: 


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


and add the following code directly under it :


<meta content='Phrase describing the site' name='Description'/>


But this method is make Description repeated in all the pages and posts, and this is contrary to the techniques of SEO, the best way they put special description for each individual blog post , Here is the correct way :

To do so, go to your blog template from Blogger control panel, look for this code:

  <head>


Paste the following code directly below the previous code:

_____________________________________________________________
 <b:if cond='data:blog.pageType != &quot;item&quot;'>

<meta content='A general description of the Blog' name='description'/>
    <b:else/>

    <b:if cond='data:blog.url == &quot;link of the first post&quot;'>
<meta content='Description of the first post' name='description'/>
    </b:if>

  <b:if cond='data:blog.url == &quot;link of the second post&quot;'>
<meta content='Description of the second post' name='description'/>
    </b:if>

    </b:if>
______________________________________________________________

Thus, you must repeat the code blue, with Modify links and a description of each blog post you add, this means you will have to modify the template each time, it's a bit tired but very satisfactory results . And will increase the proportion click on the link to your blog in the search engines , this will increase the clicks on the links on your blog, when the researcher finds Description convinces for click ..


Using the previous codes you can put a different description for each blog post, and what follows it in Th3-SEO


But if you want to pass it automatic way, does not want to modify the template each time, you can use this code instead of the previous code : 

_________________________________________________________________

<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName + data:blog.title' name='Description'/>
</b:if>
_________________________________________________________________

This code makes the description of the post is the same as post title , And so you will get different descriptions by automatic manner .. I think that the first way more professional, right?


the post description is is the same as the post title using the latest code


0 comments:

Post a Comment