php 使用Google Analytics自定义维度添加WordPress作者跟踪

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用Google Analytics自定义维度添加WordPress作者跟踪相关的知识,希望对你有一定的参考价值。

//Google Universal Analytics
function 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', 'YOUR ANALYTICS PROPERTY ID HERE', 'auto');
  <?php if (is_singular('post') :
    $this_post = get_queried_object();
    $author_id = $this_post->post_author;
    //dimension index number must be retrieved for your GA property ?>
    ga('set', 'dimension1', '<?php echo get_the_author_meta('display_name', $author_id); ?>');
  <?php endif; ?>
  ga('send', 'pageview');
</script>    
<?php }
add_action ('wp_head', 'google_analytics');

以上是关于php 使用Google Analytics自定义维度添加WordPress作者跟踪的主要内容,如果未能解决你的问题,请参考以下文章

如何在 BigQuery 中使用 UDF 展平 Google Analytics 自定义维度?

Yoast Plugin for WordPress 使用 Google Analytics 跟踪自定义事件

Google Analytics:使用自定义变量来跟踪不断增长的价值

Google Analytics 在自定义报告中排除空的自定义变量

Google Analytics:按自定义维度过滤

javascript 将自定义事件推送到Google Universal Analytics(analytics.js)。