Skip to content

Instantly share code, notes, and snippets.

@hslaszlo
Created June 25, 2019 11:54
Show Gist options
  • Select an option

  • Save hslaszlo/89b46eb3a42cf9a6e3c4ae71fefa42e5 to your computer and use it in GitHub Desktop.

Select an option

Save hslaszlo/89b46eb3a42cf9a6e3c4ae71fefa42e5 to your computer and use it in GitHub Desktop.
ga
<?php
function analytics_tracking_code(){
echo ‘
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag(\'js\', new Date());
gtag(\’config\', \'GA_MEASUREMENT_ID\');
</script>
’;
}
add_action('wp_head', 'analytics_tracking_code');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment