首先展示时不显示分类和评论,在archive.php(分类页和标签页)、index.php(首页)、post.php(文章)里删除以下代码

<li><?php _e('分类: '); ?><?php $this->category(','); ?></li>
                    <li itemprop="interactionCount"><a
                            href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('评论', '1 条评论', '%d 条评论'); ?></a>

修改归档日期为中文,并加入文章数量统计,在sidebar.php修改内容如下:
删除代码

<?php \Widget\Contents\Post\Date::alloc('type=month&format=F Y')
                    ->parse('<li><a href="{permalink}">{date}</a></li>'); ?>

增加代码

<?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>'); ?>

删除关于page.php页面下的评论功能

  <?php $this->need('comments.php'); ?>

添加新评论