Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/f83c9174ed9c7af8d52bde4916247f0d to your computer and use it in GitHub Desktop.
Save wp-seopress/f83c9174ed9c7af8d52bde4916247f0d to your computer and use it in GitHub Desktop.
Filter logged in users tracking custom dimension with Google Analytics
function sp_gtag_cd_logged_in_cf($html) {
return "'dimension5': 'cd_logged_in',";
}
add_filter('seopress_gtag_cd_logged_in_cf', 'sp_gtag_cd_logged_in_cf');
function sp_gtag_cd_logged_in_ev($html) {
return "gtag('event', '".__('Connected users','wp-seopress')."', {'cd_logged_in': '".wp_get_current_user()->ID."'});";
}
add_filter('seopress_gtag_cd_logged_in_ev', 'sp_gtag_cd_logged_in_ev');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment