如何使用 Google Analytics 跟踪每个作者在 wordpress 中的综合浏览量

How to track each author's pageviews in wordpress with Google Analytics

我使用的通用跟踪代码如下所示:

<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');

为了获取作者数据,整个代码崩溃了,我的跟踪代码也停止工作了。

有人知道如何解决这个问题吗?

您的 ga 语句中换行符前有一个额外的双引号 "...更不用说您在 first/last 调用中使用了大引号。

ga('create', 'UA-XXXXXXXX-Y', 'example.com');

<?php
   if (is_single()){
      echo "ga('set', 'contentGroup1', '".get_the_author()."');\n";
   }
?>

ga('send', 'pageview');