WordPress文章非插件阅读次数统计及显示

一些博客显示每个帖子的总阅读次数显示文章的热门程度,我们可以通过非插件阅读次数统计及显示。

简单的三个步骤:

第一步:
在主题function.php文件中添加此代码。

/* 访问计数 */
function get_post_views ($post_id) {   
  
    $count_key = 'views';   
    $count = get_post_meta($post_id, $count_key, true);   
  
    if ($count == '') {   
        delete_post_meta($post_id, $count_key);   
        add_post_meta($post_id, $count_key, '0');   
        $count = '0';   
    }   
  
    echo number_format_i18n($count);   
  
}   
  
function set_post_views () {   
  
    global $post;   
  
    $post_id = $post -> ID;   
    $count_key = 'views';   
    $count = get_post_meta($post_id, $count_key, true);   
  
    if (is_single() || is_page()) {   
  
        if ($count == '') {   
            delete_post_meta($post_id, $count_key);   
            add_post_meta($post_id, $count_key, '0');   
        } else {   
            update_post_meta($post_id, $count_key, $count + 1);   
        }   
  
    }   
  
}   
add_action('get_header', 'set_post_views');

第二步:
在single.php文件中添加以下代码行。跟踪并设置每个帖子的阅读。

<?php get_post_views($post -> ID); ?> views

注意:最常规的使用应该是文章详情中,一般是文章页面 (single.php)的while ( have_posts() )后面,部分single.php中有get_template_part( ‘template-parts/content’, ‘single’);则需要到conent加上下面的代码。

WordPress技巧

修改LNMP(Nginx)二级目录网站wordpress伪静态

2018-9-3 15:22:48

WordPress技巧

Wordpress默认上传图片路径链接禁止

2018-9-10 4:23:42

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索