wordpress 显示文章浏览次数

如果你只是想要简单的实现显示文章浏览次数,而又不想使用插件,那可以看看今天在这里列出的不使用插件使 WordPress 显示文章浏览次数的方法。

首先,我们需要修改当前主题的 functions.php 文件,将下列代码添加到适当位置。

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 View”;
}
return $count.’ Views’;
}

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);
}
}

代码解释:添加的 getPostViews 和 setPostViews 方法分别是获取文章浏览次数和设置文章浏览次数的方法。设置方法是通过文章 ID 将浏览次数信息写入到 post_meta 也就是我们文章的“自定义栏目”内,而获取就是通过文章 ID 从 post_meta 里获取对应信息。

然后修改 single.php 文件,在 loop 主循环内添加如下代码:

代码解释:这段代码的作用是调用 functions.php 里我们添加的 setPostViews 方法,以实现设置浏览次数。

最后,我们在想要显示文章浏览次数的地方添加如下代码即可。

代码解释:作用同上,只不过是调用 getPostViews 方法,以获得浏览次数,并且打印显示。