Seo Master present to you: Blogger is a very SEO-friendly platform, everything from url, script are optimized for search engine, except the title.
The default Blogger titleThe default blogger title is so not friendly with users as well as search engine. Why? Because default blogger title likes to display main title first, and post title after. Since the SERP (search engine result page) only display a certain amount of words of title, displaying main title first may cut off some important keywords from your post title. And with readers, they can not completely understand your post if the title do not display entirely.
Homepage: Howeblog - Tutorials and TipsSo, if you wanna improve your blog ranking, you must change default title into a better form, and then customize it for your taste. Blogger Title TagThere is 3 kind of blogger title tags you need to know.
Customize Blogger TitleAt first, remember back up your template, then you need to find where the default title tag located. Go to your blog Dashboard > Template > Edit HTML (don't tick Expand Widget Templates), then find this tag: <title><data:blog.pageTitle/></title> Some custom templates have changed the default title already, so obviously you can't find this tag and don't need to change it again. But if you still want to see how it looks, try search for:<title><data: Okay, to change your blog title, you need to replace entire of these tags (<title></title> with default Blogger template or <b:if></b:if> with custom template), you can choose one of the following title types below:1. Only Post TitleReplace title tag with:<b:if cond='data:blog.pageType == "index"'> With these tags, Blogger will show blog title at homepage, and only post title at post page, also apply for static page, archive page and label page.<title><data:blog.pageTitle/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> 2. Post Title and Page Title (Recommended):Replace title tag with:<b:if cond='data:blog.pageType == "index"'> At post page it will show title first and then blog title, also apply for static page, archive page and label page. E.g. "Customize Blogger Title | Howeblog - Tutorials and Tips".<title><data:blog.pageTitle/></title> <b:else/> <title><data:blog.pageName/> | <data:blog.title/></title> </b:if> Tips: you can replace | character with another one like ~, -, /, \. This structure of title is widely used by Google, Yahoo, Youtube and others websites. 3. Customize Title with Custom KeywordNot just post title, you can customize it with adding some keywords in title. It will show in SERP as a part of post title automatically every post. You can add your keyword before or after data:blog tag, but inside title tag. For example:With Type 1:<b:if cond='data:blog.pageType == "index"'> <title><data:blog.pageTitle/> - Homepage keywords</title> <b:else/> <title>Case Study: <data:blog.pageName/> - Post keywords</title> </b:if>
With type 2:<b:if cond='data:blog.pageType == "index"'> 2013, By: Seo Master
<title><data:blog.pageTitle/></title> <b:else/> <title>Best Tips: <data:blog.pageName/> from <data:blog.title/></title> </b:if> |
Labels: Blogger, Blogger Tips