Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created June 10, 2020 05:11
Show Gist options
  • Save Musilda/ab08fb3dc57592cc07cb6c564c4a5f0b to your computer and use it in GitHub Desktop.
Save Musilda/ab08fb3dc57592cc07cb6c564c4a5f0b to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_head', 'musilda_ga_code' );
function musilda_ga_code(){
?>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-169040585-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-169040585-1');
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment