Why post title is not showing first? It is showing blog title first on a browser tab title. Today I am here to solve this issue.
Some blogger themes are not showing post title first while opening a blog post by default. If you wish to show your post title first on a browser tab title, you can easily edit your blogger theme to make this happen.
It is very simple and easy. Let's click here on "view" to open my blog post. You can see here my blog title is showing up first with the post title at the front. So what we need to do is just go to "Theme" and click on "Edit HTML". Search for
Some blogger themes are not showing post title first while opening a blog post by default. If you wish to show your post title first on a browser tab title, you can easily edit your blogger theme to make this happen.
It is very simple and easy. Let's click here on "view" to open my blog post. You can see here my blog title is showing up first with the post title at the front. So what we need to do is just go to "Theme" and click on "Edit HTML". Search for
<title><data:blog.pageTitle/></title>
and Replace with the following codes:
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
Then save your theme. That's it!<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
No comments
Post a Comment