---
title: Filtrer le suivi de Google Analytics
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-suivi-de-google-analytics/"
lang: fr-FR
updated: 2021-10-01
hook_name: seopress_gtag_html
required_version: 2.6
---

# Filtrer le suivi de Google Analytics

- **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)



