SEO: Remove your blog name from the title of Blogger Blog
One thing that has bothered me for a while is the fact that every one of my blog post page titles starts with the blog name.
Repeating your blog title on every post page is bad for SEO.
Blogger doesn't have a built in option for this but it's easy to fix with a few lines of code.
Go to your Blogger CP and select edit html.
Find the string:
<title><data:blog.pageTitle/></title>
Replace it with:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
You Blogger blog will now be better optimized for search engines and users.
Repeating your blog title on every post page is bad for SEO.
Blogger doesn't have a built in option for this but it's easy to fix with a few lines of code.
Go to your Blogger CP and select edit html.
Find the string:
<title><data:blog.pageTitle/></title>
Replace it with:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
You Blogger blog will now be better optimized for search engines and users.
Comments