上次请教冰剑同学,问了下他怎么给Bo-Blog添加上下文链接,其实很简单,Bo-Blog中已经添加了上下文链接,我们之需要在CSS中将其打开就可以了。开启上下文链接其实也是一种变相的SEO,不仅仅增加了文章链接,也给大众提供了像翻书一样的功能,让感兴趣的朋友一页一页的翻下去。你就等着PV玩命的涨吧。
用EditPlus 打开模版中的style.css(用其他的也可以,不过不要用Windows自带的记事本)
找到
/* entry display box */
.prev-article{
display:none;
}
.next-article{
display:none;
}
修改为
/* entry display box */
.prev-article{ float: left;line-height:30px;height:30px;}
.next-article{ float: right;line-height:30px;height:30px;}
然后回到后台刷新缓存,我们就可以看到上下文链接了。