---
title: "Filter Download &#038; Outlink tracking Matomo feature"
url: "https://www.seopress.org/support/hooks/filter-download-outlink-tracking-matomo-feature/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_matomo_link_tracking
required_version: 3.8.5
---

# Filter Download &#038; Outlink tracking Matomo feature

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



