1

post_views_count() 旨在使用 ajax 请求更新页面当前 postID 的视图计数,以便它仍然可以工作。

调用时输出的是已成功调用的输出,但是在调试时正在添加我的视图计数。任何帮助,将不胜感激。

仅供参考:这是一种称为课程的自定义帖子类型。


functions.php 中的代码

add_action('wp_ajax_nopriv_post_views_count', 'post_views_count');
add_action('wp_ajax_post_views_count', 'post_views_count');

function post_views_count() {
    global $wpdb;
    $countKey = 'post_views_count';
    $count = get_post_meta($postID, $countKey, true);
    if($count==''){
        $count = 0;
        delete_post_meta($postID, $countKey);
        add_post_meta($postID, $countKey, '0');
    }else{
        $count++;
        update_post_meta($postID, $countKey, $count);
    }
    exit();
}

single-courses.php 中的代码

<script>
        jQuery(document).ready(function() {
            var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
            jQuery.ajax({
            type: "POST",
            cache: false,
            url: ajaxurl,
            data: {
                action: 'post_views_count',
                postID: '<?php echo get_the_ID(); ?>'
            },
            success: function (output) {
                console.log("<?php echo get_post_meta(get_the_ID(), 'post_views_count', true); ?>");
            }

            }); 
        });
    </script>
4

1 回答 1

0

解决了!

发送了对 postID 数据的请求,现在可以在静态缓存页面时跟踪帖子查看次数。

$postID = $_REQUEST['postID'];
于 2019-11-30T14:59:32.983 回答