wordpress 程序自带很多的数据统计功能,只是大家并不常用,像大家使用中的文章、标签、分类、页面、评论、用户数、登陆时间、登陆时长,都可以利用 wordpress 默认的函数统计到的,现在柠檬把一些常见的函数整理给大家,大家可以根据自己网站的情况进行使用,都是可以即用即复制即删除的。
里面同时也包含了可以检测网站状态的函数代码:
日志总数:<?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; ?>
文章来自AT互联https://www.at8848.cn转载请注明出处,谢谢!!!