Skip to content

Instantly share code, notes, and snippets.

@taotiwordpress
Created July 29, 2021 20:05
Show Gist options
  • Save taotiwordpress/c82631daec2fc43b4de9611437bc5572 to your computer and use it in GitHub Desktop.
Save taotiwordpress/c82631daec2fc43b4de9611437bc5572 to your computer and use it in GitHub Desktop.
[pantheon conditional google analytics] #pantheon #google
<?php # Live-specific configs
if ( in_array( $_ENV['PANTHEON_ENVIRONMENT'], array( 'live' ) ) ) { ?>
<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-#######', 'auto');
ga('send', 'pageview');
</script>
<?php }
else {
}?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment