类别:程序开发
日期:2021-02-10 浏览:2322 评论:0
以下代码实现的功能是在网站前端界面,调用整站的文章总数、分类总数、评论总数以及页面总数量显示在指定位置,操作简单,直接把代码复制使用即可,当然显示样式需要自行编写。
统计代码:
1
2
3
4
5
6
7
8
9
10 | <?php if ($this->options->sidebarBlock && in_array('showSiteStatistics', $this->options->sidebarBlock)): ?><section class="widget">
<h3><?php _e('数据统计'); ?></h3>
<ul> <?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?>
<li><?php _e('文章数量:'); ?><?php $stat->publishedPostsNum() ?></li>
<li><?php _e('分类数量:'); ?><?php $stat->categoriesNum() ?></li>
<li><?php _e('评论数量:'); ?><?php $stat->publishedCommentsNum() ?></li>
<li><?php _e('页面数量:'); ?><?php echo $stat->publishedPagesNum + $stat->publishedPostsNum; ?></li>
</section> |
把上面的代码添加到当前使用主题的模板文件即可
本文标题:Typecho博客系统如何统计信息调用代码?
本文链接:https://vtzw.com/post/586.html
作者授权:除特别说明外,本文由
零一 原创编译并授权
零一的世界 刊载发布。
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。
您阅读本篇文章共花了:
发表评论 / 取消回复