Skip to content

Instantly share code, notes, and snippets.

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