Skip to content

Instantly share code, notes, and snippets.

@miclow
Created October 11, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miclow/5f0b95fd6166e182710866d11bf542bd to your computer and use it in GitHub Desktop.
Save miclow/5f0b95fd6166e182710866d11bf542bd to your computer and use it in GitHub Desktop.
PHP set GA dimension when cookie (user_is_admin) exists
<?php
if( isset( $_COOKIE['user_is_admin'] ) ) {
echo 'ga(\'set\', \'dimension1\', \'true\');';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment