4、分页只显示新文章、旧文章
<?php $this->pageLink('? 新文章','prev'); ?>
<?php $this->pageLink('旧文章 ?','next'); ?>
5、测边栏每月归档后面显示文章数
<?php $this->widget('Widget_Contents_Post_Date', 'type=month&format=Y年m月')
->parse('<li><a href="{permalink}">{date}</a> <span id="ignore">({count})</span></li>'); ?>
6、复制文章时带版权
<script type="text/javascript">
document.body.oncopy = function () { setTimeout( function () { var text =clipboardData.getData("text"); if (text) { text = text + "\r\n本篇文章来源于<?php $this->options->title(); ?>|<?php $this->options->siteUrl(); ?>,原文链接:"+location.href;clipboardData.setData("text", text); } }, 100 ) }
</script>