How can I insert Google PHP tracking code into the ENFOLD theme?
Hey J,
Try adding this code at the bottom of functions.php:
function add_custom_script(){
//Your Custom Code Here
}
add_action('wp_footer', 'add_custom_script');
Just replace
//Your Custom Code Here
with your php code. Hope this helps :)
Best regards,
Nikko