How to change Blog Title as Post title?
Google’s Blogger is always display your blog name as the page title for all your posts. It leads to decrease traffic / no index in google.
Please make the following changes in your template code to achieve better SEO for blogger.
We need Edit our HTML template to get better traffic.
1. Please logon to your Blogger account, go to Layout > Edit HTML in your Dashboard.
2. Please find : <title><data:blog.pagetitle/></title>
3. Replace it with the following code.
<b:if cond= ‘data:blog.pageType == "index"’>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
4. Save the changes and Visit your blog and see the changes. Now Blogger’s title is same as Post title.



Its doesn’t work in my blogspot..
error html message: …. parse….(1)……”cond”…..
and
i think, it must extra code behind “”. maybe it different with WP code..
but i thank u for information, nice..