---
title: Función Matomo de seguimiento de descarga y enlace de salida de filtros
url: "https://www.seopress.org/es/soporte/hooks/funcion-matomo-de-seguimiento-de-descarga-y-enlace-de-salida-de-filtros/"
lang: es
updated: 2021-09-29
hook_name: seopress_matomo_link_tracking
required_version: 3.8.5
---

# Función Matomo de seguimiento de descarga y enlace de salida de filtros

- **Hook name:** `seopress_matomo_link_tracking`
- **Required version:** 3.8.5

```php
function sp_matomo_link_tracking($html) {
	$html = "_paq.push(['enableLinkTracking']);\n";
	return $html;
}
add_filter('seopress_matomo_link_tracking', 'sp_matomo_link_tracking');
```

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



