Every post page should have its post title as the title tag and this post headline should be displayed in the title bar, instead of the blog title. To correct this, find the following line in your blog template.
<title><data:blog.pageTitle/></title>
Replace it with the following code:
<b:if cond=’data:blog.pageType != "item"’>
<title>Put Your Blog Title Here</title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
<title>Put Your Blog Title Here</title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
After implementing this code, your post pages will have post title as title tag, and your home page will have regular blog title.
0 comments:
Post a Comment