---
title: Filter HTML additional tracking code in body
url: "https://www.seopress.org/support/hooks/filter-html-additional-tracking-code-in-body/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_custom_body_tracking
required_version: 3.6.2
---

# Filter HTML additional tracking code in 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)



