我使用通用跟踪代码,如下所示:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXXXX-X', 'auto');
ga('send', 'pageview');
</script>
我可以添加一行:
ga('send', 'event', 'button', 'click', 'nav buttons', 4);
它有效,但当我尝试这样做时:
ga('create', 'UA-XXXXXXXX-Y', 'example.com');
<?php
if (is_single()){
echo "ga('set', 'contentGroup1', '".get_the_author()."');\n";
}
?>
ga('send', 'pageview');
要获取作者数据,整个代码崩溃,我的跟踪代码停止工作。
任何人都知道如何解决这个问题?
答案 0 :(得分:0)
在新行字符之前,你的ga语句中有一个额外的双引号"
...更不用说你在第一个/最后一个电话中使用了引号。
ga('create', 'UA-XXXXXXXX-Y', 'example.com');
<?php
if (is_single()){
echo "ga('set', 'contentGroup1', '".get_the_author()."');\n";
}
?>
ga('send', 'pageview');