---
title: Función Matomo Filter Do Not Track (DNT)
url: "https://www.seopress.org/es/soporte/hooks/funcion-matomo-filter-do-not-track-dnt/"
lang: es
updated: 2021-10-01
hook_name: seopress_matomo_dnt
required_version: 3.8.5
---

# Función Matomo Filter Do Not Track (DNT)

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

```php
function sp_matomo_dnt($html) {
	$html = "_paq.push(['setDoNotTrack', true]);\n";
	return $html;
}
add_filter('seopress_matomo_dnt', 'sp_matomo_dnt');
```

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



