阅读:3056回复:0
wordpress教程:用代码实现文章浏览次数统计功能
[tr][td]这个功能相信大部分博客都会用到,今天介绍的使用插入代码的方式来实现这一功能,代码盲或者懒得折腾代码的童鞋可以使用这个插件:WP-PostViews
首先进入WP后台,主题 – 编辑,找到functions.php文件,在适当位置插入下面代码: /* Postviews start */ function getPostViews($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return " 0 "; } return $count; } function setPostViews($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); }else{ $count++; update_post_meta($postID, $count_key, $count); } } /* Postviews start end*/ 然后在single.php中的 endwhile; endif; wp_reset_query(); 循环前添加如下代码: 最后在你想要显示文章浏览次数统计的地方(一般在index.php、sidebar.php或single.php文件) 添加如下代码即可。 </strong> [/td][/tr] |
|