If you have a blog on BlogSpot.com, you can see the title of your post comes after the main title of the blog and this will hurt your blog rankings in search engines because search engines crawl the title from left to right.
I have searched for a solution to rearrange the order of the post title to get the post title before the blog title and this will improve the rankings of my pages in search engines which will exactly increase the traffic. After long time of searches I have found a solution by adding a simple code in your blog template.
1- Open your BlogSpot dashboard.
2- Choose "Layout" and "Edit HTML".
3- Find this code:
<title><data:blog.pageTitle/></title>
and replace it with this code:
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
4- Save your template and see the new order of your posts title wich will be in the following form: Post Title - Blog Title.
I have searched for a solution to rearrange the order of the post title to get the post title before the blog title and this will improve the rankings of my pages in search engines which will exactly increase the traffic. After long time of searches I have found a solution by adding a simple code in your blog template.
1- Open your BlogSpot dashboard.
2- Choose "Layout" and "Edit HTML".
3- Find this code:
<title><data:blog.pageTitle/></title>
and replace it with this code:
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
4- Save your template and see the new order of your posts title wich will be in the following form: Post Title - Blog Title.
Comments
Post a Comment