HTML5视频观看次数

时间:2015-10-09 07:37:02

标签: php wordpress video plugins view

在计算视频观看次数方面需要帮助。我正在使用Wordpress。或者有人知道任何可以计算视频观看次数的插件。 这也不是嵌入式视频。视频位置在我的服务器上。

1 个答案:

答案 0 :(得分:0)

此代码Punt位于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 View";
    }
    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);
    }
}

将计数值使用代码并在单页中传递post id

<?php setPostViews(1); ?>

获取计数值使用代码并传递post id

<?php getPostViews(1); ?>