Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/395c5ccf795797d4659fc79022bfae28 to your computer and use it in GitHub Desktop.
Save wp-seopress/395c5ccf795797d4659fc79022bfae28 to your computer and use it in GitHub Desktop.
Filter Google Analytics Cross-domain tracking feature
function sp_gtag_download_tracking_ev($html) {
return "jQuery(document).ready(function() {
jQuery('a').filter(function() {
return this.href.match(/.*\.(pdf|docx|xlsx)(\?.*)?$/); }).click(function(e) {
gtag('event', 'click', {'event_category': 'downloads','event_label' : this.href});
});
});
";
}
add_filter('seopress_gtag_download_tracking_ev', 'sp_gtag_download_tracking_ev');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment