---
title: Filtrer le HTML du champ de suivi additionnel dans le body
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-html-du-champ-de-suivi-additionnel-dans-le-body/"
lang: fr-FR
updated: 2019-07-30
hook_name: seopress_custom_body_tracking
required_version: 3.6.2
---

# Filtrer le HTML du champ de suivi additionnel dans le body

- **Hook name:** `seopress_custom_body_tracking`
- **Required version:** 3.6.2

```php
function sp_custom_body_tracking($html) {
	$html = $html.' my custom tracking code here';
	return $html;
}
add_filter('seopress_custom_body_tracking', 'sp_custom_body_tracking');
```

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



