---
title: Filtrar el dominio de cookies de Matomo
url: "https://www.seopress.org/es/soporte/hooks/filtrar-el-dominio-de-cookies-de-matomo/"
lang: es
updated: 2021-09-29
hook_name: seopress_matomo_cookie_domain
required_version: 3.8.5
---

# Filtrar el dominio de cookies de Matomo

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

```php
function sp_matomo_cookie_domain($html) {
	$html = "_paq.push(['setCookieDomain', '*.".get_home_url()."']);\n";
	return $html;
}
add_filter('seopress_matomo_cookie_domain', 'sp_matomo_cookie_domain');
```

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



