我有Google Analytics for Wordpress plugin,我想添加一个新的跟踪事件:
setTimeout("_gaq.push(['_trackEvent', '15_seconds', 'read'])", 15000);
如here
所述我应该编辑哪个文件来添加新的跟踪事件?
答案 0 :(得分:1)
尝试使用此代码,在页脚的某处:
<script>
var _gaq = _gaq || [];
(function (tos) {
window.setInterval(function () {
tos = (function (t) {
return t[0] == 50 ? (parseInt(t[1]) + 1) + ':00' : (t[1] || '0') + ':' + (parseInt(t[0]) + 10);
})(tos.split(':').reverse());
window.pageTracker ? pageTracker._trackEvent('Time', 'Log', tos) : _gaq.push(['_trackEvent', 'Time', 'Log', tos]);
}, 10000);
})('00');
</script>
希望这有帮助。