---
title: Filter Google Analytics Cross-domain tracking feature
url: "https://www.seopress.org/support/hooks/filter-google-analytics-cross-domain-tracking-feature/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_gtag_linker
required_version: 2.6
---

# Filter Google Analytics Cross-domain tracking feature

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

```php
function sp_gtag_linker($html) { 
	return "'linker': {'domains': ['https://www.example.com/']},"; 
} 
add_filter('seopress_gtag_linker', 'sp_gtag_linker'); 
```

Source: [https://gist.github.com/wp-seopress/5515d6d44e6eb6bc145d2b26ee72adc1](https://gist.github.com/wp-seopress/5515d6d44e6eb6bc145d2b26ee72adc1)



