WordPress主题开发:设置和获取浏览次数

Posted tinyphp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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() ); ?>

 

参考文档:

http://wp-snippets.com/post-views-without-plugin/

以上是关于WordPress主题开发:设置和获取浏览次数的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress有啥作用?

wordpress默认主题加载不出图片,是哪相关的设置?

常用wordpress插件都有哪些

WordPress主题ripro 6.6

如何在wordpress主题中添加设置页面

wordpress 不能在线安装主题