HOME | ABOUT | CONTACT

Saturday, March 20, 2010

Making Post Titles As Blog Keywords

A blog title is the first thing that search engine would read before a post title. So to have a good chance to show on first page of searching result pages, a blog title should contain keywords for the blog.

post title as blog keyword3

For blogs like this blog, which have a title that didn’t tell anything about the blog content, there is a way to making it have more chance to be found by the search engine. We can make the post title to be a keywords for the blog. Making a post title be in front of a blog title and read first by search engine before a blog title.

post title as blog keyword

To make it happens, login to Blogspot –> Layout –> Edit HTML

layout edit HTML

Find <title><data:blog.pageTitle/></title> code line.

blog title code

Replace that code line with new code line below and 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>

blog title code3

****

We can hide the blog title so the post title would be like a blog title itself.

post title as blog keyword2

The replacement code are below:

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>

blog title code2

Related Posts



No comments:

Post a Comment