---
title: Filter Matomo tracking code
url: "https://www.seopress.org/support/hooks/filter-matomo-tracking-code/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_matomo_tracking_html
required_version: 3.8.5
---

# Filter Matomo tracking code

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

```php
function sp_matomo_tracking_html($html) {
	$html = 'your custom Matomo tracking code';
	return $html;
}
add_filter('seopress_matomo_tracking_html', 'sp_matomo_tracking_html');
```

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



