Until now, the Title Tags generated for each page of your Blogger blog
would display the blog title first, then the name of your post. This
wasn't so good for SEO (search engine optimization) as this made
keywords from your post titles appear after your blog title.
So if you want to improve SEO that is important for your blog, follow step below.
1. Go to Layout > edit HTML in your Blogger dashboard.
2. Search for this tag:
<title><data:blog.pageTitle/></title>
3. Replace(means remove code above and place code below) this tag with the following:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
4. Save your template.
This work only in XML blogger templates. Also is and a hack for classic bloggers, but as I know noone use classic blogger anymore.
0 comments:
Post a Comment