---
title: Filtrar código de seguimiento adicional HTML en el cuerpo del pie de página
url: "https://www.seopress.org/es/soporte/hooks/filtrar-codigo-de-seguimiento-adicional-html-en-el-cuerpo-del-pie-de-pagina/"
lang: es
updated: 2021-09-29
hook_name: seopress_custom_footer_tracking
required_version: 3.7.5
---

# Filtrar código de seguimiento adicional HTML en el cuerpo del pie de página

- **Hook name:** `seopress_custom_footer_tracking`
- **Required version:** 3.7.5

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

Source: [https://gist.github.com/wp-seopress/2c3cb21c1ed89e070d3b05f9b4c4b406](https://gist.github.com/wp-seopress/2c3cb21c1ed89e070d3b05f9b4c4b406)



