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

# Filter Google Analytics tracking

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

```php
function sp_gtag_html($html) {
	return "your custom Google Analytics tracking code";
}
add_filter('seopress_gtag_html', 'sp_gtag_html'); 
```

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



