WordPress 文章浏览次数统计功能是必不可少的,不少主题已经集成该功能,如果你的主题没有集成,你可以使用 WP-Postviews 插件,或者试试本文的代码。

WordPress 非插件实现文章浏览次数统计的方法,是 DH 参考 willin kan 大师的 my_visitor 插件来写的,刷新一次文章页面就统计一次,比较简单实用。

非插件统计文章浏览次数

1. 在主题的 functions.php 文件的最后一个 ?> 前面添加下面的代码:

  1. function record_visitors()
  2. {
  3. if (is_singular())
  4.     {
  5. global $post;
  6.       $post_ID = $post->ID;
  7. if($post_ID)
  8.       {
  9. $post_views = (int)get_post_meta($post_ID, 'views', true);
  10.           if(!update_post_meta($post_ID, 'views', ($post_views+1)))
  11.             add_post_meta($post_ID, 'views', 1, true);
  12.       }
  13. }
  14. function post_views($before = '(点击 ', $after = ' 次)', $echo = 1)
  15. {
  16. global $post;
  17.   $post_ID = $post->ID;
  18. $views = (int)get_post_meta($post_ID, 'views', true);
  19.   if ($echoecho $before, number_format($views), $after;
  20. else return $views;
  21. }

2. 在需要显示该统计次数的地方使用下面的代码调用:

  1. 阅读:<?php post_views(' ', ' 次'); ?>

获取浏览次数最多的文章

如果要获取上面的函数统计出来的浏览次数最多的文章,可以在 functions.php 文件的最后一个 ?> 前面添加下面的代码:

  1. function get_most_viewed_format($mode = ''$limit = 10, $show_date = 0, $term_id = 0, $beforetitle= '(', $aftertitle = ')', $beforedate= '(', $afterdate = ')', $beforecount= '(', $aftercount = ')') {
  2. global $wpdb$post;
  3.   $output = '';
  4. $mode = ($mode == '') ? 'post' : $mode;
  5.   $type_sql = ($mode != 'both') ? "AND post_type='$mode'" : '';
  6. $term_sql = (is_array($term_id)) ? "AND $wpdb->term_taxonomy.term_id IN (" . join(',', $term_id) . ')' : ($term_id != 0 ? "AND $wpdb->term_taxonomy.term_id = $term_id" : '');
  7.   $term_sql.= $term_id ? " AND $wpdb->term_taxonomy.taxonomy != 'link_category'" : '';
  8. $inr_join = $term_id ? "INNER JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id) INNER JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)" : '';
  9.   $most_viewed = $wpdb->get_results("SELECT ID, post_date, post_title, (meta_value+0) AS views FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON ($wpdb->posts.ID = $wpdb->postmeta.post_id) $inr_join WHERE post_status = 'publish' AND post_password = '' $term_sql $type_sql AND meta_key = 'views' GROUP BY ID ORDER BY views DESC LIMIT $limit");
  10. if ($most_viewed) {
  11.    foreach ($most_viewed as $viewed) {
  12. $post_ID    = $viewed->ID;
  13.     $post_views = number_format($viewed->views);
  14. $post_title = esc_attr($viewed->post_title);
  15.     $get_permalink = esc_attr(get_permalink($post_ID));
  16. $output .= "<li>$beforetitle$post_title$aftertitle";
  17.     if ($show_date) {
  18. $posted = date(get_option('date_format'), strtotime($viewed->post_date));
  19.       $output .= "$beforedate $posted $afterdate";
  20.     $output .= "$beforecount $post_views $aftercount</li>";
  21.   } else {
  22. $output = "<li>N/A</li>n";
  23.   }
  24. echo $output;
  25. }

然后使用下面的函数调用:

  1. <?php get_most_viewed_format(); ?>