如何在FB Instant Articles中正确整合Google Analytics?

时间:2017-10-07 16:18:57

标签: javascript wordpress google-analytics facebook-instant-articles

我在Wordpress网站上运行Instant Articles For WP,目前来自Instant Articles的所有流量都没有在Google Analytics中注册。

我做了一点研究,发现facebook allows the additional of 3rd party tracking codes

我使用新的gTag.js而不是旧方法。

这是代码放在50.0

之前
</head>

这是<!-- Global Site Tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-MY-ID"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-MY-ID'); </script> Wordpress插件中的代码,在&#34;嵌入自定义代码&#34;部分。

Instant Articles

然而,我仍然没有在我的分析仪表板中看到任何广告系列。我根本看不到来自Instant Articles的流量。

1 个答案:

答案 0 :(得分:0)

问题已修复。我删除了HTML标记,并将ga的参数修改为以下

<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','https://www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-MY-ID', 'auto');
  ga('set', 'campaignSource', 'Facebook');
  ga('set', 'campaignMedium', 'Facebook Instant Articles');
  ga('set', 'referrer', ia_document.referrer);
  ga('send', 'pageview');

</script>