---
title: Filtrar el seguimiento de Google Analytics
url: "https://www.seopress.org/es/soporte/hooks/filtrar-el-seguimiento-de-google-analytics/"
lang: es
updated: 2021-09-29
hook_name: seopress_gtag_html
required_version: 2.6
---

# Filtrar el seguimiento 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)



