如何跟踪页面和所有具有特定标签的帖子?

时间:2014-03-02 23:20:51

标签: google-analytics

如何创建一个跟踪已定义页面和所有具有特定标记的帖子(wordpress)的目标?例如...我想跟踪页面livespot.pl/gw2/以及所有带有“gw2”标签的帖子。我知道如何在php中执行此操作,检查是否带有该标记的帖子...但我需要谷歌分析部分的帮助。

1 个答案:

答案 0 :(得分:0)

使用这样的跟踪。

_gaq.push(['_trackEvent', 'Visit', 'gw2']);

有关更多示例,请参阅The Event Tracker Guide。这是通过javascript完成的。​​

您还可以使用自定义变量Custom Variables

_gaq.push(['_setCustomVar',
      1,                   // This custom var is set to slot #1.  Required parameter.
      'Tag',           // The top-level name for your online content categories.  Required parameter.
      'gw2',  // Sets the value of "Section" to "Life & Style" for this particular aricle.  Required parameter.
      3                    // Sets the scope to page-level.  Optional parameter.
   ]);