php 用于下载/邮件/出站链接的Wordpress Google Analytics跟踪代码。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 用于下载/邮件/出站链接的Wordpress Google Analytics跟踪代码。相关的知识,希望对你有一定的参考价值。
<?php
$current_site_url = get_site_url(); // e.g. http://www.example.com
$to_remove = array( 'http://', 'https://' );
foreach ( $to_remove as $item ) {
$current_site_url = str_replace($item, '', $current_site_url); // to: www.example.com
}
?>
<script type="text/javascript"> (function($){ $(window).load(function() {
//Track Downloads
$('a').filter(function() { return this.href.match(/.*\.(zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*)(\?.*)?$/); }).click(function(e) { ga('send','event', 'download', 'click', this.href); });
//Track Mailto
$('a[href^="mailto"]').click(function(e) { ga('send','event', 'email', 'send', this.href); });
//Track Outbound Links
$('a[href^="http"]').filter(function() { if (!this.href.match(/.*\.(zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*)(\?.*)?$/)){ if (this.href.indexOf('<?php echo $current_site_url; ?>') == -1) return this.href; } }).click(function(e) { ga('send','event', 'outbound', 'click', this.href); }); }); })(jQuery);
</script>
以上是关于php 用于下载/邮件/出站链接的Wordpress Google Analytics跟踪代码。的主要内容,如果未能解决你的问题,请参考以下文章
html 跟踪Google Analytics中的出站链接,下载,电话,电子邮件链接
php Wordpres检索密码电子邮件
实战Wordpres的CSRF漏洞利用
PHP 和 MySQL 中的短 URL 出站链接跟踪
javascript 跟踪Google Analytics中的下载和出站链接
最佳实践:如何跟踪出站链接?