Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/b8a48ec7c2cc8e45428f2ec7317db9c4 to your computer and use it in GitHub Desktop.
Save wp-seopress/b8a48ec7c2cc8e45428f2ec7317db9c4 to your computer and use it in GitHub Desktop.
Filter authors tracking custom dimension with Google Analytics
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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment