摘要:wordpress程序自带很多的数据统计功能,只是大家并不常用,像大家使用中的文章、标签、分类、页面、评论、用户数、登陆…
wordpress程序自带很多的数据统计功能,只是大家并不常用,像大家使用中的文章、标签、分类、页面、评论、用户数、登陆时间、登陆时长,都可以利用wordpress默认的函数统计到的,现在大挖把一些常见的函数整理给大家,大家可以根据自己网站的情况进行使用,都是可以即用即复制即删除的。
里面同时也包含了可以检测网站状态的函数代码
1
2
3
4
5
6
7
|
日志总数:<?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?>篇
评论总数:<?php echo $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments”);?>条
分类总数:<?php echo $count_categories = wp_count_terms(‘category’); ?>个
标签总数:<?php echo $count_tags = wp_count_terms(‘post_tag’); ?>个
友情链接:<?php $link = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y'”); echo $link; ?>个
网站运行:<?php echo floor((time()–strtotime(“2011-7-27”))/86400); ?>天
最后更新:<?php $last = $wpdb->get_results(“SELECT MAX(post_modified) AS MAX_m FROM $wpdb->posts WHERE (post_type = ‘post’ OR post_type = ‘page’) AND (post_status = ‘publish’ OR post_status = ‘private’)”);$last = date(‘Y年n月j日’, strtotime($last[0]->MAX_m));echo $last; ?>
|
来源:http://www.wazhuti.com/979.html