Tuesday, March 22, 2011
0
if your Blog title appears first followed by Blog post title in search engine ,then just keep reading the post to solve this problem. Before going to solution, I will explain you how this event can make a bad effect on your Blogs or sites traffic.
Now come to solution. You can do two things:
Step 1: Login to Blogger.com
Step 2: From Dashboard select Layout then click on Edit HTML.
Step 3: Then search for this tag <title><data:blog.pageTitle/></title> . Normally it is located in <head> section.
Now if you want to show only Blog Post Title then replace the above tag with following code:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
Or If you want to Show Blog Post Title First + then Blog Title, replace the <title><data:blog.pageTitle/></title> tag with the following code.
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
Enjoy
Show Post Title First on Search Engine
if your Blog title appears first followed by Blog post title in search engine ,then just keep reading the post to solve this problem. Before going to solution, I will explain you how this event can make a bad effect on your Blogs or sites traffic.
Now come to solution. You can do two things:
- Blog Post Title+Blog Title
- Only Blog Post Title
Step 1: Login to Blogger.com
Step 2: From Dashboard select Layout then click on Edit HTML.
Step 3: Then search for this tag <title><data:blog.pageTitle/></title> . Normally it is located in <head> section.
Now if you want to show only Blog Post Title then replace the above tag with following code:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
Or If you want to Show Blog Post Title First + then Blog Title, replace the <title><data:blog.pageTitle/></title> tag with the following code.
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
Enjoy
Subscribe to:
Post Comments (Atom)




0 Responses to “Show Post Title First on Search Engine”
Post a Comment