实现wordpress文章浏览次数统计
wordpress文章中添加浏览统计功能可以让用户看到博文有多少人访问,同时还能看到文章的欢迎程度,实现wordpress文章浏览次数统计可以根据下面的方法操作
操作方法
- 01
安装插件 WP-PostViews WP-Postviews 安装非常简单,只要上传和激活即可。然后到 WP 后台 > 设置 > Postviews 配置 在使用的地方添加wordpress调用标签 <?php if(function_exists(‘the_views’)) { the_views(); } ?>
- 02
用代码实现浏览统计功能 用Dreamweaver打开functions.php, 在functions.php中添加以下代码: /* 访问计数 */ function record_visitors() { if (is_singular()) { global $post; $post_ID = $post->ID; if($post_ID) { $post_views = (int)get_post_meta($post_ID, ’views’, true); if(!update_post_meta($post_ID, ’views’, ($post_views+1))) { add_post_meta($post_ID, ’views’, 1, true); } } } } add_action(‘wp_head’, ’record_visitors’); /// 函数名称:post_views /// 函数作用:取得文章的阅读次数 function post_views($before = ’(点击 ‘, $after = ’ 次)’, $echo = 1) { global $post; $post_ID = $post->ID; $views = (int)get_post_meta($post_ID, ’views’, true); if ($echo) echo $before, number_format($views), $after; else return $views; } 在需要显示的地方调用WP标签 <?php post_views(‘ ’, ’ 次‘); ?>