Posts tagged 统计
调用WordPress 博客自身的统计信息
72008-07-16
by shamas
| 965 views
这是在看过wordzine写过的一篇关于利用wordpress自身的统计调用方法,然后进行了一下扩展,作为新版2.6的后台,细分了更多的统计信息,包话文章总数,页面数,评论数,也有了垃圾评论等,于是把这些我都进行了一下调用。这些操作都可以减少对数据库的查询,更满足很多人对插件不喜欢的心态。下面看具体的方法: 首先,在functions.php中写入以下代码:
//总文章数 $totalPosts = wp_count_posts('post')->publish; //总页面数 $totalPages = wp_count_posts('page')->publish; //总评论数 $totalCmts = get_comment_count(); //总 栏目数 $totalcategory = wp_count_terms('category'); //总 Tag 数 $totalTags = wp_count_terms('post_tag');
Recent Comments