My most of Bloggers Friends need to know about how to optimized Blog Title, The Solutions is I revised the template for my blog to use the following template code for generating title tags:
<b:if cond='data:blog.pageName == ""'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/> | <data:blog.title/></title> </b:if>
The title tag generated with this template code contains the post title first, followed by the blog title. This gives you search engine optimized titles as the post title is likely to contain more relevant keywords for a page than the blog title and relevant words should be placed near the beginning of title.
Secondly, I noticed that the
blog.pageName variable contains valid title for regular Blogger posts and special pages such as search results, labels and archive pages. Also, in most cases the blog.pageName is same as blog.pageTitle minus blog.title. So by concatenating a few variables together, here are the titles generated by this template code:- Home Page
<title>Blogger SEO</title> - Blogger Search for "php gd library"
<title>Search results for php gd library | Blogger SEO</title> - Label php
<title>php | Blogger SEO</title> - Archive for May 2012
<title>May 2009 | Blogger SEO</title> - Post
<title>Swap Title of Blogger Blog for SEO | Blogger SEO</title>
Usage
You need to insert this code in your Blogger template as follows:
- Go to Blogger Dashboard › Layout › Edit HTML
- Backup your original template using the "download full template" option.
- Find the code in the Blogger template that says:
<title><data:blog.pageTitle/></title> - If you cannot find it, chances are that you already have a similar hack installed. In this case, proceed if you know exactly what you are doing.
- Replace it with the code mentioned in the beginning of this article and save the template.
- Test your blog thoroughly.
Update: Change Titles of Blogger Blog That Use Classic Template
Classic Blogger templates are harder to customize. However, I have found a way to change the title for blogs that use the classic Blogger templates. The following trick changes the titles for post pages from:
<title>Blog Title: Blog Post 1</title>to:
<title>Blog Post 1 | Blog Title</title>The titles for other pages remain the same. Here is the template code for classic templates:
<MainOrArchivePage> <title><$BlogPageTitle$></title> </MainOrArchivePage> <ItemPage> <title><Blogger><$BlogItemTitle$></Blogger> | <$BlogTitle$></title> </ItemPage>
The above code should replace the existing title code for your template, which normally looks like:
<title><$BlogPageTitle$></title>
And here are the resulting titles:
- Home Page
<title>Blog Title</title> - Blogger Search for "lorem"
<title>Blog Title</title> - Label php
<title>Blog Title</title> - Archive for October 2012
<title>Blog Title: October 2012</title> - Post
<title>Blog Post 1 | Blog Title</title>
More Updates about SEO, If you need any help related to the Blogger Feel Free to Contact me Share your views by comments.
![]() |
If you enjoyed this post and wish to be informed whenever a new post is published, then make sure you Subscribe to our regular Email Updates! |



