Skip to content

Instantly share code, notes, and snippets.

@NichlasB
Last active April 22, 2019 10:01
Show Gist options
  • Save NichlasB/e98973680366711d20f8e80a987d140d to your computer and use it in GitHub Desktop.
Save NichlasB/e98973680366711d20f8e80a987d140d to your computer and use it in GitHub Desktop.
Template for adding Google Analytics tracking code to site's head.
<?php
/* Copy the Content Below this line - DO NOT INCLUDE THE <?php ABOVE */
/**
* Add Google Analytics tracking code
*/
function cf_google_analytics_tracking() { ?>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12345678-1', 'auto');
ga('send', 'pageview');
</script>
<?php }
add_action( 'wp_head', 'cf_google_analytics_tracking', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment