Post Title Followed By Blog Title

By default your Blogger blog title appears first followed by your post title in search engines. People always search for more specific contents. And because of this reason there are more chances of overlooking of your website link by visitors even if your link is at the top of the search results of search engines. To increase click conversion of your links, display your post title first followed by your blog title because it is the post title that gives visitors an idea about what the post is all about and what contents the post is containing. It will surely help in attracting visitors eyes to your links to a large extent. In this post I will show you how to implement it by using a small piece of code in your blogger template.




1) Login to your Blogger account

2) Go to Blogger Admn Page > Template > Click on Edit HTML >Click on Proceed

3) At the top of your template you would find a piece of code similar to the codes given below.

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

4) Replace the line
<title><data:blog.pageTitle/></title>
with the code below.

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>

5) Its all done. Now your post title will appear first followed by the blog title.

No comments:

Post a Comment