标题优化 Blogger 的模板默认博客名在日志名在前,这样,日志标题中的关键词权重降低,不利于在搜索引擎中争取排名。在“布局”–>“修改 HTML”中找到以下代码:
<title><data:blog.pageTitle/></title>
用下面的代码替换它重新发布博客即可:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if>不过 China Business Daily 没有采用上述方法,因为我希望用这个雷人的博客名吸引浏览者点击^_^
- 添加 keywords 和 description
Blogger 在后台是无法通过一般设置来添加 keywords 和 description 的,但在“布局”–>“修改 HTML”中进行修改,在<head>与</head>中添加以下代码,可以添加推广代码。China Business Daily 添加的 keywords 和 description 如下:
<meta content='China Business Daily -Sourcing of Business news and Industry Movements' name='Description'/>
<meta content='China Business Daily, Business News, Business Opportunity, Industry Movements' name=’Keywords’/>
- 文章“分类”和“存档”放置在页面左侧
网页的顶部和左侧在源代码中位置靠前,是搜索引擎蜘蛛抓取的黄金位置。将“分类”和“存档”模块放置在此位置,有利于引导搜索引擎收录其文章。
- “面包屑”导航
可能由于博客文章数量较少的原因,Blogger 并未给模板设置“面包屑”导航的功能,China Business Daily 通过修改模板增加了该功能。这个功能可以使你在每篇文章的独立页中增加一个所在位置的导航链接,方便浏览者浏览和搜索引擎抓取。
第一步:
进入 Template->Edit HTML,备份,勾选 Expand Widget Templates 展开,找到 Blog1 部件 (<b:widget id="Blog1" locked="false" title="Blog Posts" type="Blog">) 。将下列代码紧贴其后。
<b:includable id='breadcrumbs' var='post'>
<b:if cond='data:blog.pageType == "item"'>
<p class='breadcrumbs'>
<span class='post-labels'>
<b:if cond='data:post.labels'>
You are here:
<a expr:href='data:blog.homepageUrl' rel='tag'>Home</a> >
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == "true"'>
<a expr:href='data:label.url' rel='tag'> <data:label.name/></a>
</b:if>
</b:loop>
<b:if cond='data:post.title'>
> <b><data:post.title/></b>
</b:if>
</b:if>
</span>
</p>
</b:if>
</b:includable>第二步:
接着再找到这句
<b:if cond='data:post.dateHeader'>
将下列代码紧贴其上:
<b:include data='post' name='breadcrumbs'/>具体样式可以自行修改,这时保存更新即可。如果你的一篇文章有多个 Label 时,它只会显示最后一个,如果你的文章没有加上 Label 的话,它就不会显示了。
- Blogroll 只出现在首页
Blogger 的 Blogroll 默认出现在每个页面,全站的导出链接,对 PR 损失较大,如果无意中链向作弊的网站,被 Google 惩罚的力度也将变大。China Business Daily 通过修改模板,使 Blogroll 只在首页出现。找到相应的模块,添加粗体标出的部分。
若不在首页显示,添加粗体的判断语句。
<b:widget id='AdSense1' locked='false' title=" type='AdSense'>
<b:includable id='main'>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<div class='widget-content'>
<data:adCode/>
</div>
</b:if>
</b:includable>
</b:widget>若只在标签页中显示,添加粗体判断语句。
<b:widget id='Image1' locked='false' title=" type='Image'>
<b:includable id='main'>
<b:if cond='"标签页地址" == data:blog.url'>
<b:if cond='data:title != ""'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_img"' expr:src='data:sourceUrl' expr:width='data:width'/>
<br/>
<b:if cond='data:caption != ""'>
<span class='caption'><data:caption/></span>
</b:if>
</div>
</b:if>
</b:includable>
</b:widget>若只在首页显示,添加的位置与上面的一样
<b:if cond='data:blog.homepageUrl == data:blog.url'>
</b:if>
- Blogroll 加 nofollow
在交换链接的时候,如果对方只看重流量,对于 PR 的传递没有要求,则可以将其链接放在一个专门的 Blogroll 模块中,该模块对外导出链接添加 nofollow 属性。仍以 China Business Daily 为例,在“修改 HTML”中利用模块标题查找到类似以下的代码:
<b:widget id='LinkList1' locked='false' title='My Favourite Website &amp; Blog' type='LinkList'>,该 widget 管理友情链接模块。再在该 widget 中找到链接部分的代码:
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
在<a>标签中添加 rel='nofollow' 即可。
有不少网站提供Feed烧制,只要提供网站地址,剩下的操作一般是选择烧制的区域或点击两个要烧制内容的链接。
目前这些服务烧制出来的Feed只含有标题和链接,并不像Google资讯那样有内容摘要。列举一些:
http://dapper.net/
这个可能吧以前介绍过。功能强大,定制强度很高。
http://feed43.com
这个使用起来可能会有点难度,对不熟悉网页编程的人可能会有点困难。但定制强度很高。可以订制内容
http://www.ponyfish.com/
这个操作简单,可定制性强, 推荐使用。
如果你还有更好的订阅不提供RSS Feed输出的网站的方法,不妨和大家分享一下!
Here is a list of the most popular of such services.
numbr
Spelled without the e, numbr.com is the new name for craigsnumber.com. It offers you a completely free anonymous number in a very easy way. Just log on to their site and register for a new number, which you can get only seconds after clicking. You can even have a new number if you are away from your computer, by making a simple call on your fixed or mobile phone. Each number is unique and is not recycled. There are also features like call-screening and anti-telemarketing. You can keep the number for a length of time ranging between an hour and a month. The strong points of this service are the ease of use and that it is free.
JetNumbers
Jetnumbers service gives you virtual numbers in more than 50 countries around the world and in more than 3000 area codes. You can be anywhere and have a number with any area code, anywhere. People calling you from these area codes will then only pay local rates. There is also voicemail among other features, including SkypeIn for a much extended list of countries.
Jangl
Jangl allows you to call or text anyone while hiding your number. Again, getting the phone number is not straight-forward; you have to tell them who you want to contact and they will give you a number for that call. As I am writing this, Jangl is in beta and is free. Once they release, the service will be paid. Despite all these, Jangl is a strong service that has become very popular.
Safer Calls
SaferCalls service offers virtual numbers and voicemail, and extends to international calls, but with additional rates.
Ring-To Number
Ring-To Number gives you a free anonymous number that you can use on social networks, but requires you to place a widget on your personal page that will generate the number. The service is free, but there is a premium price for those who want to get numbers with area codes.
oncetel
oncetel offers free anonymous phone numbers, but people who call you on these numbers will have to pay small fees. What is also good with oncetel is that you can get the number instantly online through their web interface.
Call Safe
Call Safe is also free, but charges a small fee for the person calling you on the anonymous number. The duration of your number ranges between an hour and a week.
Stealth Number
Stealth is a service with many features, but it costs a nominal monthly fee. Also, obtaining a number is not instantaneous.
Tossable Digits
Tossable Digits is a paid service giving you an anonymous number, with features like call screening, voicemail etc. Subscribers have a 30-day period and 1000 free minutes at the start.
MyAdBox
MyAdBox is a privacy package that has plans ranging between $5 and $20, all offering an anonymous phone number and email address. You can even set up greetings. It is principally designed for people placing ads on newspapers, web pages or elsewhere.