如何在 WordPress 博客系统中实现阅读统计

要实现阅读统计功能,首先需要在博客中添加一个“阅读次数”字段,然后在每一篇文章中显示该字段的值。要实现这一点,需要编辑 WordPress 的模板文件。

首先,打开博客主题的 functions.php 文件,在文件中添加如下代码:

function set_post_views($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); } } //To keep the count accurate, lets get rid of prefetching remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);

这段代码的作用是:

在博客数据库中为每篇文章添加一个“阅读次数”字段,如果该字段不存在,则创建该字段,并将其值设为 0;

如果该字段已经存在,则将其值加 1。

接下来,打开博客主题的 single.php 文件,在文件中查找“the_content”函数,并在该函数前添加如下代码:

set_post_views(get_the_ID());

这段代码的作用是:

在文章内容输出之前,调用 set_post_views 函数,该函数会将当前文章的“阅读次数”字段值加 1。

最后,在需要显示阅读次数的位置添加如下代码:

<?php echo get_post_meta(get_the_ID(), 'post_views_count', true); ?>

这段代码的作用是:

调用 WordPress 的 get_post_meta 函数获取当前文章的“阅读次数”字段值,并输出该值。