WordPress 统计文章浏览数代码

758阅读 0评论2011-10-30 ulovko
分类:LINUX

  1. WordPress 统计文章浏览数代码
  2. # vim functions.php ( SHIFT -g 在最后加入)
  3. /* added by ko */
  4. function getPostViews($postID){
  5. $count_key = ‘post_views_count’;
  6. $count = get_post_meta($postID, $count_key, true);
  7. if($count==”){
  8. delete_post_meta($postID, $count_key);
  9. add_post_meta($postID, $count_key, ’0′);
  10. return “0 View”;
  11. }
  12. return ‘浏览:’.$count;
  13. }
  14. function setPostViews($postID) {
  15. $count_key = ‘post_views_count’;
  16. $count = get_post_meta($postID, $count_key, true);
  17. if($count==”){
  18. $count = 0;
  19. delete_post_meta($postID, $count_key);
  20. add_post_meta($postID, $count_key, ’0′);
  21. }else{
  22. $count++;
  23. update_post_meta($postID, $count_key, $count);
  24. }
  25. } ?>
  26. 提示:为了方便可以将代码直接复制到编辑器如 mousepad 保存到文件 article-stat.php,接着:
  27. # cat article-stat.php >> function.php
  28. # vim single.php (在 the_content 上方加入代码:)
  29. 欢迎转载,请保留本文链接:” title=””>

  30.   

  31. :wq
上一篇:PHP获取访客信息
下一篇:wordpress网站信息统计代码