---
title: Filtrar el código de seguimiento de Matomo
url: "https://www.seopress.org/es/soporte/hooks/filtrar-el-codigo-de-seguimiento-de-matomo/"
lang: es
updated: 2021-09-29
hook_name: seopress_matomo_tracking_html
required_version: 3.8.5
---

# Filtrar el código de seguimiento de Matomo

- **Hook name:** `seopress_matomo_tracking_html`
- **Required version:** 3.8.5

```php
function sp_matomo_tracking_html($html) {
	$html = 'your custom Matomo tracking code';
	return $html;
}
add_filter('seopress_matomo_tracking_html', 'sp_matomo_tracking_html');
```

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



