我正在寻找一种方法来修改我的Wordpress网站上的链接,以便跟踪我的所有第三方链接。
我能够找到一些帮助,如何在Google Analytics中创建正确的跟踪代码,但该过程的第二部分是添加一些特定的链接属性。
以下是他们建议我复制的例子:
<'a href =“www.blog-hosting-service.com/myBlog”onclick =“_ gaq.push(['_ link','www.blog-hosting-service.com/myBlog']); return false;“>查看我的博客
有谁知道我可以在哪里插入此代码链接属性,以便我可以通过Google Analytics收集外部点击次数?
答案 0 :(得分: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]);
});
});