---
title: Filter author custom dimension in Matomo
url: "https://www.seopress.org/support/hooks/filter-author-custom-dimension-in-matomo/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_matomo_cd_author_ev
required_version: 3.8.5
---

# Filter author custom dimension in Matomo

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

```php
function sp_matomo_cd_author_ev($html) {
	$html = "_paq.push(['setCustomVariable', '".seopress_google_analytics_cd_author_option()."', '".__('Authors','wp-seopress')."', '".get_the_author()."', 'visit']);\n";
	return $html;
}
add_filter('seopress_matomo_cd_author_ev', 'sp_matomo_cd_author_ev');
```

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



