文章统计又分为分类统计和日期归档统计

分类统计在Widget_Metas_Category_List中的listCategories函数中

1
2
3
4
5
6
7
8
9
10
$this->_categoryOptions->setDefault(array(
'wrapTag' => 'ul',
'wrapClass' => '',
'itemTag' => 'li',
'itemClass' => '',
'showCount' => true,
'showFeed' => false,
'countTemplate' => '(%d)',
'feedTemplate' => '<a href="%s">RSS</a>'
));

showCount改为true即可
日期归档统计看源码可知调用的parse函数,所以在sidebar.php中将对应的

1
2
3
parse('<li><a href="{permalink}">{date}</a></li>');
改为
parse('<li><a href="{permalink}">{date}({count})</a></li>');

即可达到效果