1. 程式人生 > >不用任何外掛實現WordPress文章點選數

不用任何外掛實現WordPress文章點選數

如果你是用WordPress搭建的網站,你是不是想知道你的文章被多少人點選看過?一些用於統計點選次數的外掛可以解決這個問題。不過,今天要推薦的是一個更簡單的不用任何外掛實現點選數統計的方法。首先,需要建立相關的函式。你可以把下面的程式碼貼上到你所用主題的 functions.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 View";
    }
    return $count.' Views';
}
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);
    }
}

然後,貼上下面的程式碼到主題的 single.php 的文章的 loop 裡:
<?php setPostViews(get_the_ID()); ?>

最後,把下面的程式碼拷貝到任意你的主題模板裡想要顯示點選數的地方:
<?php echo getPostViews(get_the_ID()); ?>