1. 程式人生 > >wordpress實現文章閱讀次數

wordpress實現文章閱讀次數

原文出自搬磚工,需要轉載請註明出處。

相信不少部落格都是用wordpress搭建的,那麼我們在不使用外掛的情況下如何簡單地實現文章閱讀次數的統計呢?下面有兩個方法可供參考:
方法一:
1、首先開啟我們的後臺控制面板,點選外觀——編輯

2、在右欄找到函式模板function.php

在檔案的最末尾新增如下程式碼

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;  
}  
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);  
    }  
}

新增之後記得更新檔案

3、然後我們開啟文章頁面single.php,找到與下面類似的地方

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

在它的下面新增如下程式碼

<?php setPostViews(get_the_ID()); ?>

最後將我們需要展示閱讀次數的地方新增如下程式碼

<?php echo getPostViews(get_the_ID()); ?>


方法二:
1、和方法一一樣,找到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); ?>

效果:

注意:如果部分博主使用的主題是特殊的主題,那麼文章頁面應該是loop-single.php,把上面方法裡面的single.php替換成loop-single.php即可