Tagged: child theme, footer, Tracking Code
A lead generation app wants their tracking code in the footer. I’m using a child theme arrangement. Where would I put this code? They are recommending using Appearance>Editor to add the code.
Hey MtnStreamGroup,
You can go to Appearance>Editor and add it to the footer.php file. Or you can use this snippet to add the code:
add_action('wp_footer', 'add_tracking');
function add_tracking(){
//your code here
}
Best regards,
Victoria