如何显示站点统计,包括网站文章数、评论数、建站天数等等!有些主题有提供类似的小工具,如果没有来看看下面的统计函数吧:
文章:
publish; ?> 篇
页面:
publish; ?> 个
草稿:
draft; ?> 篇
分类:
个
标签:
个
会员:
get_var(“select count(id) from $wpdb->users”); echo $users; ?> 个
链接:
get_var(“select count(*) from $wpdb->links where link_visible = ‘y’”); echo $link; ?> 个
评论:
条
浏览:
次
更新:
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; ?>
# 更多技巧,请关注「专题」