0

我正在寻找一种方法来修改我的 Wordpress 网站上的链接,以便它跟踪我所有的第 3 方链接。

我能够找到一些帮助,如何在 Google Analytics 中创建正确的跟踪代码,但该过程的第二部分是添加一些特定的链接属性。

这是他们建议我复制的示例:

<'a href="www.blog-hosting-service.com/myBlog" onclick="_gaq.push(['_link', 'www.blog-hosting-service.com/myBlog']); 返回 false;" >查看我的博客

有谁知道我可以在哪里插入此代码链接属性,以便我可以通过 Google Analytics 收集外部点击?

4

1 回答 1

0

在我看来,JQuery 将是最好的方法。

// start by getting the current page path (the one you are sending to tracker)

var pathname = window.location.pathname;

// ready handler to change the links on hosts not equal to location host

$(document).ready(function() {

    $('a[href^="http://"]').filter(function() {

        return this.hostname && this.hostname !== location.hostname;

    }).click(function(e) {

        _gaq.push(['_link', pathname]);

    });
});
于 2013-04-19T22:09:42.287 回答