在Wordpress上使用Google Analytics跟踪作者

时间:2015-05-18 05:57:22

标签: wordpress 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-XXXXXXX-XX', 'auto');
      ga('send', 'pageview', {
      'dimension1': '<?=$author?>'
    });

    </script>

现在,当我查看Google Analytics页面中的数据时,我将作者姓名视为“”而非实际作者

2 个答案:

答案 0 :(得分:0)

循环

您确定在wordpress循环中进行了设置吗?这取决于变量的设置位置。如果你在HTML页面的开头有这个,那么这个变量就不必在这个时候可用了。

速记语法

这似乎是正确的简写<?=$author?>。但请尝试完整语法<?php echo $author; ?>

答案 1 :(得分:0)

这应该可以正常工作:

<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-XXXXXXX-1', 'auto');
<?php if (is_single()) :
    $post_author_id = get_post_field( 'post_author', $post_id ) ?>
ga('set', 'dimension1', '<?php echo get_the_author_meta('display_name', $post_author_id); ?>' );
<?php endif ?>
ga('send', 'pageview');
</script>