Wednesday, November 11, 2009

How to Optimize Blogger Page Title


This section we see how to optimize the Post title with different way of display in title bar .This helps in search engine to locate directly to your post , than searching only your home page.

Locate the following code in EDIT HTML
<title><data:blog.pageTitle/></title>

After that change it with code below. What the code does is swap the page title. Instead of (Blog title : Post Title) it is now (Post Title : Blog title)

<b:if cond=%u2019data:blog.pageType == %u201Citem%u201D%u2018>
<title><data:blog.pageName/> %u2013 <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

You may also want to use ONLY your post title on your page title. To do this, use the code below.

<b:if cond=%u2019data:blog.pageType == %u201Citem%u201D%u2018>
<title><data:blog.pageName/> </title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

Labels: ,

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home