我使用以下代码以特定间隔刷新网页。该页面似乎刷新,但统计信息未显示在Google Analytics中。如果你们能帮助我,那会很棒。
<script type='text/javascript' src='http://www.website.com/wp-content/themes/themename/jquery.js?ver=1.11.0'></script>
<script type="text/javascript">
function refresh_handler() {
function refresh() {
var url = $(location).attr('href');
window.history.pushState("", "<?php echo $meta_title; ?>", url);
$("#ajaxanalytics").load("http://www.website.com/wp-content/themes/themename/inc-analytics.php");
}
setInterval(refresh, 60*1000); //every 1 minutes
}
$(document).ready(refresh_handler);
</script>
答案 0 :(得分:0)
inc-analytics.php
上的代码会将数据发送给Google Analytics吗?
如果页面不在inc-analytics.php
代码的内容中,则需要在重新加载页面之前触发Google Analytics发送综合浏览量。