Learn how to Remove Blog Name from Post Title to increase SEO traffic of 10,000 views per day
Default Blogger includes Blog Name before every post name and same appears in search results It affects the blog search appearance SEO as it hides important keywords of the post.
To remove Blog name (Your website title) from post to enable google index your post follow this instruction:-
Go to Blogger and click on Template tab
then Edit HTML of your template and find
<title><data:blog.pageTitle/></title>
Replace it with this code
<!--To Remvove Blog Name from Each post title-Start--> <b:if cond='data:blog.pageType == "index"'> <title><data:blog.pageTitle/></title> <b:else/> <b:if cond='data:blog.pageType == "static_page"'> <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> </b:if> <!--To Remvove Blog Name from Each post title-End-->