Skip to content

Instantly share code, notes, and snippets.

@ThierryA
Last active October 4, 2015 14:14
Show Gist options
  • Save ThierryA/b12000515988dee4ed56 to your computer and use it in GitHub Desktop.
Save ThierryA/b12000515988dee4ed56 to your computer and use it in GitHub Desktop.
Beans: add Google Analytics tracking code.
<?php
// Do not include the opening php tag if it is already included in your file.
// Add Google Analytics tracking code to your website's head. Replace UA-0000000-0 with your own Analytics ID.
add_action( 'wp_head', 'beans_child_google_analytics' );
function beans_child_google_analytics() {
?><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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-0000000-0', 'auto');
ga('send', 'pageview');
</script><?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment