Sunday, October 18, 2015

How to Display Post Title Before Blog Title on Blogger

Today i'm going to show you how to change your blogger post result on Google.
By default, Blogger's title is set to show blog name before post title what may affect the SEO of your blog in some cases where the blog name is lengthy because most of the post title gets cutoff because of the character limit in search result.
Without wasting much time

• Login to your blogger's dashboard, select the blog you want to edit and scroll down to the template in the left side bar of your blogger's dashboard.
• You need to backup your template incase something goes wrong.
• After that, click on EDIT HTML to edit the source code of your blogger's template.
• In the HTML source, press CTRL+F and search for <title> it will bring you to this line of code
     <title><data:blog.pageTitle/></title>


• Delete that code and replace it with the code provided below
<b:include data='blog' name='all-head-content'/>
<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>
• Save your template and refresh your blog
If your have any difficulty with the procedure above, you can comment below and we'll help you with it

No comments:

Post a Comment