Skip to content

Instantly share code, notes, and snippets.

@EastSideCode
Created January 16, 2018 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EastSideCode/e068271faf8d13caa87701c543a5d244 to your computer and use it in GitHub Desktop.
Save EastSideCode/e068271faf8d13caa87701c543a5d244 to your computer and use it in GitHub Desktop.
Add analytics to wordpress
// Include the Google Analytics Tracking Code (ga.js)
// @ https://developers.google.com/analytics/devguides/collection/gajs/
function google_analytics_tracking_code() { ?>
<!-- analytics script goes here -->
<script type="text/javascript">
</script>
<!-- analytics script ends here -->
<?php
}
// include in footer
add_action('wp_footer', 'google_analytics_tracking_code');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment