我收到很多回复说我的 Google 跟踪代码在很多方面都过多,我怀疑可能并非所有功能都正常工作。(有些指标没有显示数据:例如“付费流量”和“广告系列”)
谷歌提供的跟踪代码是否有用?
我是否应该回到旧的跟踪代码格式,因为我知道它们运行良好?
可能是我页面上的展示位置吗?谷歌之前推荐过</head>
这里的每个人都推荐过</body>
。
Google 为我呈现的内容:(当前)
<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-40498113-1', 'caseykidd.com');
ga('send', 'pageview');
</script>
我的旧跟踪代码:(大约一年前)
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28036048-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>