飞龙博客

妙法莲华经

wordpress侧边栏文章和访客数量统计代码

feilong.org 修订于2011-12-04 08:08:58 193 次浏览

放出飞龙自己写的wordpress侧边栏文章和访客数量统计代码,供朋友们参考使用。本日志修订网址:http://feilong.org/count-posts-wordpress-sidebar 第一种没有用到插件,第二中使用了WP-Statistics插件,大家可以选择其中的一种方法即可。


//need no plugin
function fl_counts(){
// Posts
$num_posts = wp_count_posts( 'post' );
$num = number_format_i18n( $num_posts->publish );
$feilong = _n( 'Post', 'Posts', intval($num_posts->publish) );
echo '
  • ' . $num . $feilong . '
  • '; // Pages $num_pages = wp_count_posts( 'page' ); $num = number_format_i18n( $num_pages->publish ); $feilong = _n( 'Page', 'Pages', $num_pages->publish ); echo '
  • ' . $num . $feilong . '
  • '; // Categories $num_cats = wp_count_terms('category'); $num = number_format_i18n( $num_cats ); $feilong = _n( 'Category', 'Categories', $num_cats ); echo '
  • ' . $num . $feilong . '
  • '; // Tags $num_tags = wp_count_terms('post_tag'); $num = number_format_i18n( $num_tags ); $feilong = _n( 'Tag', 'Tags', $num_tags ); echo '
  • ' . $num . $feilong . '
  • '; // Approved Comments $num_comm = wp_count_comments( ); $num = number_format_i18n($num_comm->approved); $feilong =_n( 'Comment', 'Comments', $num_tags ); echo '
  • ' . $num . $feilong . '
  • '; //users $users_of_blog = count_users(); $total_users = $users_of_blog['total_users']; $num = number_format_i18n($total_users); $feilong = _n( 'Tag', 'Tags', $total_users ); echo '
  • ' . $num . $feilong . '
  • '; }//20111205 function fl_side_counts(){ //needs WP-Statistics plugin echo '
      '; echo '
    • 访问次数: '; wp_statistics_total();echo '
    • '; //echo '
    • 今日访问: '; wp_statistics_today();echo '
    • '; echo '
    • 日志数量: '; wp_statistics_countposts();echo '
    • '; echo '
    • 评论数量: '; wp_statistics_countcomment();echo '
    • '; echo '
    • 最近更新: '; wp_statistics_lastpostdate();echo '
    • '; echo '
    • 注册用户: '; wp_statistics_countusers();echo '
    • '; echo '
    • 在线人数: '; wp_statistics_useronline();echo '
    • '; echo '
    '; }//20111108 feilong.org

    有什么问题可以联系我。

    更新网址:https://feilong.org/count-posts-wordpress-sidebar
    最初发布:20111204 08:08:58 feilong.org 于广州

    加入收藏夹,查看更方便。

    所在分类: wordpress

    新作:

    旧文: