2010/09/18

The SEO of Blogger Title tag

The importance of <title> tag

The default setting of blogger for <title> HTML tag would be something like

Blogger name: Article name

However, with this kind of setting, it have lower probability for search engines to show your page at the top of the result list because what really matters is the article name instead of blogger name.

Therefore, I would like to show my page with <title> HTML tag in the following format:

Article name - Blogger name

In this case, the search engines would know the Article name is superior to Blogger name in the <title>, resulting in the PageRank of this page may have a higher value.

How to do?

1. Go to the page Design -> Edit HTML. Find the code like:

<title><data:blog.pageTitle/></title>

csie-tw.blogspot.com

2. Replace the code found in the step 1 by

<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if>

or replace code by the following, if you just want to show the Article name without Blogger name.

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

沒有留言:

2024年React state management趨勢

輕量化 在過去Redux 是 React 狀態管理的首選函式庫。 Redux 提供了強大的功能和靈活性,但也帶來了一定的學習成本和複雜度。 隨著 React 生態的不斷發展,越來越多的開發者開始追求輕量化的狀態管理函式庫。 Zustand 和 Recoil 等庫以其簡單易用、性...