wordpress进阶教程(三十六):文章浏览量统计-重复刷新不增加-利剑分享-科技生活
利剑分享-科技生活-利剑分享-科技生活
利剑分享-科技生活

wordpress进阶教程(三十六):文章浏览量统计-重复刷新不增加

wordpress进阶教程(三十六):文章浏览量统计-重复刷新不增加

有细心的网友发现本工作室的教程的浏览量统计,重复刷新不增加,留言问怎么实现的。

本工作室的这个统计代码还是很久很久很久以前,在某一个插件上面扒下来的代码,具体什么插件我也忘了,今天这篇教程也不详细解析代码了,直接来懒人模式。

第一步,在你主题的functions.php文件中添加如下代码(是统计计数、获取浏览数的一些函数)

  1. /***********文章统计*********/  
  2.  process_postviews() {   
  3.      $user_ID$post;   
  4.     (check_cookie($post))   
  5.         ;   
  6.     (is_int($post)) {   
  7.         $post = get_post($post);   
  8.     }   
  9.     (!wp_is_post_revision($post)) {   
  10.         (is_single() || is_page()) {   
  11.             $id = intval($post->ID);   
  12.             //$post_views = get_post_custom($id);   
  13.             $post_views = get_post_meta($id,’_check_count’,true);   
  14.             //统计所有人   
  15.             $should_count = true;   
  16.             //排除机器人   
  17.             $bots = (‘Google Bot’ => ‘googlebot’, ‘Google Bot’ => ‘google’, ‘MSN’ => ‘msnbot’, ‘Alex’ => ‘ia_archiver’, ‘Lycos’ => ‘lycos’, ‘Ask Jeeves’ => ‘jeeves’, ‘Altavista’ => ‘scooter’, ‘AllTheWeb’ => ‘fast-webcrawler’, ‘Inktomi’ => ‘slurp@inktomi’, ‘Turnitin.com’ => ‘turnitinbot’, ‘Technorati’ => ‘technorati’, ‘Yahoo’ => ‘yahoo’, ‘Findexa’ => ‘findexa’, ‘NextLinks’ => ‘findlinks’, ‘Gais’ => ‘gaisbo’, ‘WiseNut’ => ‘zyborg’, ‘WhoisSource’ => ‘surveybot’, ‘Bloglines’ => ‘bloglines’, ‘BlogSearch’ => ‘blogsearch’, ‘PubSub’ => ‘pubsub’, ‘Syndic8’ => ‘syndic8’, ‘RadioUserland’ => ‘userland’, ‘Gigabot’ => ‘gigabot’, ‘Become.com’ => ‘become.com’,’Baidu Bot’=>’Baiduspider’);   
  18.             $useragent = $_SERVER[‘HTTP_USER_AGENT’];   
  19.              ($bots  $name => $lookfor) {   
  20.                  (stristr($useragent$lookfor) !== false) {   
  21.                     $should_count = false;   
  22.                     ;   
  23.                 }   
  24.             }   
  25.             ($should_count) {   
  26.                 (!update_post_meta($id, ‘_check_count’, ($post_views+1))) {   
  27.                     add_post_meta($id, ‘_check_count’, 1, true);   
  28.                 }   
  29.             }   
  30.         }   
  31.     }   
  32. }   
  33.   
  34.  check_cookie($post){   
  35.     $COOKNAME = ‘ashuwp_view’;   
  36.     (isset($_COOKIE[$COOKNAME]))   
  37.         $cookie = $_COOKIE[$COOKNAME];   
  38.       
  39.          false;   
  40.     $id = $post->ID;   
  41.     (($id)){   
  42.          false;   
  43.     }   
  44.     (!($cookie)){   
  45.         $list = explode(‘a’, $cookie);   
  46.         (!($list) && in_array($id$list)){   
  47.              true;   
  48.         }   
  49.     }   
  50.      false;   
  51. }   
  52. ### Function: Display The Post Views   
  53.  the_views($display = true,$id) {   
  54.     $post_views = intval(get_post_meta($id,’_check_count’,true));   
  55.     $output = number_format_i18n($post_views);   
  56.     ($display) {   
  57.         echo $output;   
  58.     }  {   
  59.          $output;   
  60.     }   
  61. }   
  62.   
  63. ### Function: Display Total Views   
  64. (!function_exists(‘get_totalviews’)) {   
  65.      get_totalviews($display = true) {   
  66.          $wpdb;   
  67.         $total_views = intval($wpdb->get_var(“SELECT SUM(meta_value+0) FROM $wpdb->postmeta WHERE meta_key = ‘_check_count'”));   
  68.         ($display) {   
  69.             echo number_format_i18n($total_views);   
  70.         }  {   
  71.              $total_views;   
  72.         }   
  73.     }   
  74. }   
  75.   
  76. ### Function: Add Views Custom Fields   
  77. add_action(‘publish_post’, ‘add_views_fields’);   
  78. add_action(‘publish_page’, ‘add_views_fields’);   
  79.  add_views_fields($post_ID) {   
  80.      $wpdb;   
  81.     (!wp_is_post_revision($post_ID)) {   
  82.         add_post_meta($post_ID, ‘_check_count’, 0, true);   
  83.     }   
  84. }   
  85. ### Function: Delete Views Custom Fields   
  86. add_action(‘delete_post’, ‘delete_views_fields’);   
  87.  delete_views_fields($post_ID) {   
  88.      $wpdb;   
  89.     (!wp_is_post_revision($post_ID)) {   
  90.         delete_post_meta($post_ID, ‘_check_count’);   
  91.     }   
  92. }  

第二步:由于我们统计一般只统计文章,所以在你的主题的single.php文件的最最最最开头加上如下php代码。

下面的代码是用来设置cookie的,会在用户浏览器端增加一个形如: 123a45a45a113 其中字母a是分隔文章ID的,有效期是一天,设置cookie前不能有任何输出,所以这些代码要添加在文件的最最开头。

  1. $COOKNAME = ‘ashuwp_view’; //cookie名称   
  2. $TIME = 3600 * 24;   
  3. $PATH = ‘/’;   
  4.     
  5. $id = $posts[0]->ID;   
  6. $expire = time() + $TIME//cookie有效期   
  7. (isset($_COOKIE[$COOKNAME]))   
  8.     $cookie = $_COOKIE[$COOKNAME]; //获取cookie   
  9.   
  10.     $cookie = ;   
  11.        
  12. (($cookie)){   
  13.     //如果没有cookie   
  14.     setcookie($COOKNAME$id$expire$PATH);   
  15. }{   
  16.     //用a分割成数组   
  17.     $list = explode(‘a’, $cookie);   
  18.     //如果已经存在本文的id   
  19.     (!in_array($id$list)){   
  20.         setcookie($COOKNAME$cookie.’a’.$id$expire$PATH);   
  21.     }   
  22. }  

第三步:在single.php文件的 while( have_posts() ) : the_post();的后面增加统计浏览数的函数

  1. process_postviews();  

如下aa

 

第四步:输出

在你需要显示浏览数的地方添加:

  1. 浏览数:<?php the_views(true,$post->ID);?>  

好了。

© 版权声明
THE END
喜欢就支持一下吧
点赞14 分享