教程开始
打开ripro-v2/inc/template-tags.php文件
使用全局搜索“阅读”
将以下代码覆盖到图片位置即可
/**
* 添加文章阅读数量
* @Author Dadong2g
* @DateTime 2021-01-25T20:13:59+0800
*/
function add_post_views($post_id = null){
if (empty($post_id)) {
global $post;
$post_id = $post->ID;
}
$this_num = (int)(rand(30,50) + (int)get_post_meta($post_id,'views',true));
$new_num = $this_num+1;
if ($new_num < 0 ) {
$new_num = 1;
}
return update_post_meta( $post_id, 'views', $new_num );
}
注释:rand(30,50)中30位置是每次点击最少增加的阅读量,50位置是每次点击最多增加的阅读量
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。