---
title: Filter authors tracking custom dimension with Google Analytics
url: "https://www.seopress.org/support/hooks/filter-authors-tracking-custom-dimension-with-google-analytics/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_gtag_cd_author_cf / seopress_gtag_cd_author_ev
required_version: 2.6
---

# Filter authors tracking custom dimension with Google Analytics

- **Hook name:** `seopress_gtag_cd_author_cf / seopress_gtag_cd_author_ev`
- **Required version:** 2.6

```php
function sp_gtag_cd_author_cf($html) {
	return "'dimension1': 'cd_author',"; 
} 
add_filter('seopress_gtag_cd_author_cf', 'sp_gtag_cd_author_cf'); 

function sp_gtag_cd_author_ev($html) {
	return "gtag('event', '".__('Authors','wp-seopress')."', {'cd_author': '".get_the_author()."'});"; 
} 
add_filter('seopress_gtag_cd_author_ev', 'sp_gtag_cd_author_ev'); 
```

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



