---
title: Filtrer la fonctionnalité Ne Pas Suivre (Do Not Track – DNT) de Matomo
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-fonctionnalite-ne-pas-suivre-do-not-track-dnt-de-matomo/"
lang: fr-FR
updated: 2020-03-24
hook_name: seopress_matomo_dnt
required_version: 3.8.5
---

# Filtrer la fonctionnalité Ne Pas Suivre (Do Not Track – DNT) de Matomo

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



