Home Forums WoodMart support forum How can I add script to header and footer without plugin? Reply To: How can I add script to header and footer without plugin?

#34804

Artem Temos
Keymaster

Hi,

Try to add the following PHP code snippet to the child theme functions.php file to do this

/* Add Google analytics tracking code */
add_action('wp_head', 'woodmart_ga'); 
function woodmart_ga() { ?> 
 <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','https://www.google-analytics.com/analytics.js','ga');    
 
ga('create', 'UA-XXXXXXXX-X, 'auto');   //Replace X with your UA ID 
ga('send', 'pageview');  
</script> 
<?php }