Как отобразить количество просмотров за последние 24 часа на странице продукта Woocommerce - PullRequest
0 голосов
/ 07 марта 2019

Как отобразить количество просмотров за последние 24 часа на странице одного продукта Woocommerce?

Я нашел этот код, и он работает.Но как я могу считать только за последние 24 часа?

спасибо за ваш ответ заранее.

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);
    }
}
// Remove issues with prefetching adding extra views
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
...