在WordPress开发中,常常需要跟踪文章的阅读量,以便更好地了解用户的兴趣和行为。通过在主题的 functions.php 文件中添加一些自定义函数,我们可以轻松实现这一功能。以下是如何获取和设置文章阅读量的代码示例,一个是获取阅读量,一个是设置阅读量:

<?php

/**
* getPostViews()函数
* 功能:获取阅读数量
* 在需要显示浏览次数的位置,调用此函数
* @Param object|int $postID   文章的id
* @Return string $count          文章阅读数量
*/
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;
 }


/**
* setPostViews()函数  
* 功能:设置或更新阅读数量
* 在内容页(single.php,或page.php )调用此函数
* @Param object|int $postID   文章的id
* @Return string $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 );
     }
 }

?>

 注意:调用了setPostViews函数后,每刷新一次就会增加一次浏览量。

在内容页(single.php,或page.php )尝试一下吧:

<?php setPostViews(get_the_ID());echo getPostViews( get_the_ID() ); ?>
About Author
川贝
View All Articles
Check latest article from this author !
根服务器是什么?

根服务器是什么?

8 9 月, 2024
为什么现在很少有企业再提ISO体系认证了?
SEO 英文术语大全

SEO 英文术语大全

8 9 月, 2024

Related Posts