Yes, Now you can change the Title of the blogposts on individual post-view. You might have seen that I’ve changed the Title of my homepage to “Tech blog for Blogger tricks, widgets, templates, adsense tips and much more.” This trick can help in boosting your search engine rankings.
By default, your Blogger’s title on the top left displays your blog title, and if it’s in the items page, it’ll include your post title as well.eg, Webdale:Change the blog title for blogposts. By copying the coding from below, you can change the default behavior of the title tag.
Step 1-Goto Blogger Dashboard>>Layout>>Edit Html
Step 2-Backup your template
Step 3-Follow the instructions below
Step 2-Backup your template
Step 3-Follow the instructions below
Find this Code :
<head>
<b:include data=’blog’ name=’all-head-content’/>
<title><data:blog.pageTitle/></title>
<b:include data=’blog’ name=’all-head-content’/>
<title><data:blog.pageTitle/></title>
Then change this code with code Trick to make your Blog is SEO Friendly
bellow :
bellow :
<head>
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<meta content=’Your Blog Description.‘ name=’description’/>
<meta content=’ Your Blog KeyWords.‘ name=’Keywords’/>
<meta content=’global’ name=’target’/>
<meta content=’Index,follow’ name=’Robots’/>
<meta content=’ALL’ name=’SPIDERS’/>
<meta content=’ALL’ name=’WEBCRAWLERS’/>
<meta content=’ Your Blog KeyWords.‘ name=’Keywords’/>
<meta content=’global’ name=’target’/>
<meta content=’Index,follow’ name=’Robots’/>
<meta content=’ALL’ name=’SPIDERS’/>
<meta content=’ALL’ name=’WEBCRAWLERS’/>
<!– End Widget-based: Changing the Blogger Title Tag –>
Further more you can add a very good keyword in homepage’s title by just adding Keyword + Blog Title by finding this line in the above code{3rd last}-
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<title><data:blog.pageTitle/></title>
</b:if>
and adding keyword here
<b:else/>
<title> <data:blog.pageTitle/>Keyword</title>
</b:if>
<title> <data:blog.pageTitle/>Keyword</title>
</b:if>
Be creative in writing Keyword, it will surely help your blog grow and also for search engine optimization
0 comments:
Post a Comment