Some blog owners want to have the titles of the posts easier to spot, in search hit lists.
The solution, to them, is to have the post titles appear before the blog titles, in the template header. If you want your blog to have the post title in front of the blog title, this is a simple enough change.
It's best to make this change only affect display of individual pages (when indexed), and posts. Other search hit list entries, such as archive, label, and main page displays, should show the default blog page title - and not confuse the potential readers with irrelevant detail, in the search hit list entries.
This change requires a small amount of extra code, to identify the specific search hit entries, where the display change is appropriate.
It's a simple change.
Since none of the code is blog specific, it's a simple "search and replace" change. A check for page type of "item" is all that you need.
As always, I will advise you to backup the blog template, before and after making this change.
Find the default title code, using "Edit HTML".
Use the Template HTML Editor. Locate
Add 4 lines of code.
Replace
The change won't have immediate effect.
Now, wait while your "item" pages (individual pages / posts) are re indexed - and this may not happen, over night. Again, "index" pages (archive, label, and main page displays) won't, and should not, be affected by this change.
The change needs to be selective.
If you click on the label (below) of "Blog Title", you get a label search page, with the pageTitle of "The Real Blogger Status: Blog Title". For label searches, you want the blog title to precede the label name - so, you use "data:blog.pageTitle" (the default).
If you're using Jump Break, to shorten main page entries, this change may have more impact. Blogs which display complete post content in "index" view won't have as much attention paid to the posts in "item" view.
A useful alternative / complement, to the title sequence change, would be well chosen search description meta tags. Proper sizing and wording, of all descriptions and titles, may make your search hit entries more distinctive too.
The solution, to them, is to have the post titles appear before the blog titles, in the template header. If you want your blog to have the post title in front of the blog title, this is a simple enough change.
It's best to make this change only affect display of individual pages (when indexed), and posts. Other search hit list entries, such as archive, label, and main page displays, should show the default blog page title - and not confuse the potential readers with irrelevant detail, in the search hit list entries.
This change requires a small amount of extra code, to identify the specific search hit entries, where the display change is appropriate.
It's a simple change.
Since none of the code is blog specific, it's a simple "search and replace" change. A check for page type of "item" is all that you need.
As always, I will advise you to backup the blog template, before and after making this change.
Find the default title code, using "Edit HTML".
Use the Template HTML Editor. Locate
in the template code.<title><data:blog.pageTitle/></title>
Add 4 lines of code.
Replace
With<title><data:blog.pageTitle/></title>
And hit "Save template".<b:if cond='data:blog.pageType == "item"'> <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/> <title><data:blog.pageTitle/></title> </b:if>
The change won't have immediate effect.
Now, wait while your "item" pages (individual pages / posts) are re indexed - and this may not happen, over night. Again, "index" pages (archive, label, and main page displays) won't, and should not, be affected by this change.
The change needs to be selective.
If you click on the label (below) of "Blog Title", you get a label search page, with the pageTitle of "The Real Blogger Status: Blog Title". For label searches, you want the blog title to precede the label name - so, you use "data:blog.pageTitle" (the default).
If you're using Jump Break, to shorten main page entries, this change may have more impact. Blogs which display complete post content in "index" view won't have as much attention paid to the posts in "item" view.
A useful alternative / complement, to the title sequence change, would be well chosen search description meta tags. Proper sizing and wording, of all descriptions and titles, may make your search hit entries more distinctive too.
Comments