---
title: Filtrar código de seguimiento adicional HTML en el cuerpo
url: "https://www.seopress.org/es/soporte/hooks/filtrar-codigo-de-seguimiento-adicional-html-en-el-cuerpo/"
lang: es
updated: 2021-09-29
hook_name: seopress_custom_body_tracking
required_version: 3.6.2
---

# Filtrar código de seguimiento adicional HTML en el cuerpo

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



