如何将多个自定义字段值传递给Google Analytics

时间:2014-06-03 16:10:18

标签: javascript wordpress analytics custom-fields

在我的网站中,与大多数网页一样,网页可以使用标记/类别进行标记。

我们有一个内部规则/健全性检查,一件作品最多只能有三个标签。

由于Google Analytics不允许您将多个值作为自定义字段值或事件值传递,因此能够确定哪些内容在浏览量方面最受欢迎。

我想要实现的是向Google Analytics添加维度,以便能够报告哪些是最受欢迎的类别/标记。

我们的标签结构是分层的,如下所示:

-Top Level Tag
--Secondary Level Tag 1
--Secondary Level Tag 2
--Secondary Level Tag 3
-Top Level Tag
--Another Tag 
and so on...

目前,似乎唯一的方法是传递单个值,ala:

_gaq.push(['_setCustomVar',4,'categories','culture theatres',3]);

我想传递一系列值,例如:

_gaq.push(['_setCustomVar',4,'categories', ['culture', 'theatres'],3]);

任何人都知道解决方法或是否可以这样做?文档没有给我希望......

0 个答案:

没有答案