Skip to content

Instantly share code, notes, and snippets.

@vineettalwar
Last active July 12, 2018 19:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vineettalwar/5201b0e07d758e8a85e86fa6ac28fbc7 to your computer and use it in GitHub Desktop.
Save vineettalwar/5201b0e07d758e8a85e86fa6ac28fbc7 to your computer and use it in GitHub Desktop.
analytics code via child theme, Detailed instructions at http://technicaltip.com/wordpress/add-analytics-code-wordpress/
<?php
/* Add Google analytics code to wp_head */
add_filter('wp_head','add_analytics_to_wphead',15);
function add_analytics_to_wphead(){
?>
<script>
//analytics or tag manager code
</script>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment