Typecho 文章统计
文章统计又分为分类统计和日期归档统计
分类统计在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
3parse('<li><a href="{permalink}">{date}</a></li>');
改为
parse('<li><a href="{permalink}">{date}({count})</a></li>');
即可达到效果
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 SHIELD!
评论