By default, in blogger, our blog title shows before post title. This reduces the SEO benefits because our post titles which have the main keywords got chopped because of the characters limit in search results. So today we will learn how to add Post Title before Blog Title in search engine results.
How To Show Post Title Before Blog Title In Blogger
- Go to Blogger
- Template > Edit HTML
- Search the below given line :
<title><data:blog.pageTitle/></title>
- And replace it with the below given 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>
- Save template
Now wait for the update in search results. Once search results got updated you will see the changes. But you can see these changes in your browser also.