---
title: Filter Google Analytics affiliate / outbound links tracking
url: "https://www.seopress.org/support/hooks/filter-google-analytics-affiliate-outbound-links-tracking/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_gtag_outbound_tracking_ev
required_version: 2.6
---

# Filter Google Analytics affiliate / outbound links tracking

- **Hook name:** `seopress_gtag_outbound_tracking_ev`
- **Required version:** 2.6

```php
function sp_gtag_outbound_tracking_ev($html) {
	return "jQuery(document).ready(function() { 
		jQuery('a').filter(function() { 
				return this.href.match(/(?:\/".seopress_google_analytics_affiliate_tracking_option()."\/)/gi);
			}).click(function(e){ 
				gtag('event', 'click', {'event_category': 'outbound/affiliate','event_label' : this.href}); 
			}); 
		});
	"; 
}
add_filter('seopress_gtag_outbound_tracking_ev', 'sp_gtag_outbound_tracking_ev'); 
```

Source: [https://gist.github.com/wp-seopress/3c981262d4c3595c4aca13da89b8e613](https://gist.github.com/wp-seopress/3c981262d4c3595c4aca13da89b8e613)



