Skip to content

Instantly share code, notes, and snippets.

@chasereeves
Created April 6, 2011 18:33
Show Gist options
  • Save chasereeves/906230 to your computer and use it in GitHub Desktop.
Save chasereeves/906230 to your computer and use it in GitHub Desktop.
Add Google Analytics Async Code
//=========================================================== CUSTOM GOOGLE ANALYTICS
function custom_goog() { ?>
<!-- mathiasbynens.be/notes/async-analytics-snippet Change UA-XXXXX-X to be your site's ID -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<?php } add_action('thesis_hook_before_html', 'custom_goog');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment