Wednesday, September 9, 2015

How to Optimize Blogger Title for increasing Page Views

How to Optimize Blogger Post Titles
Step 1 Log in to your Blogger dashboard and go  to Template > Edit HtML

Step 2 Using CTRL + F, find the following piece of HTML code:

<title><data:blog.pageTitle/></title>
 
In most templates it’s around 5-10 lines from the top. Replace that code with the following code:

Step 3 You Need to replace the code above with this one

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

Once you have pasted that into the HTML as shown in the above screenshot, your Post titles should appear first in Google search results (not immediately though, Google will have to crawl your blog first before it changes).

No comments:

Post a Comment