统计typecho文章分类下的文章数量
typecho默认主题侧边栏下的分类展示是没有具体的文章数量,平时看起来很不方便,于是改了一下默认的模板。
找到\var\Widget\Metas\Category
目录下的list.php
在分类回调函数treeViewCategoriesCallback
中找到这一句:
echo '"><a href="' . $this->permalink . '">' . $this->name . '</a>';
把它修改为
echo '"><a href="' . $this->permalink . '">' . $this->name . '</a><span>('. $this->count . ')</span>';