admin管理员组

文章数量:1312926

I need to add some tracking code for Aweber and they said to add it before the </body> tag. I've looked through all the Genesis files and cannot find it!

I need to add some tracking code for Aweber and they said to add it before the </body> tag. I've looked through all the Genesis files and cannot find it!

Share Improve this question edited Dec 17, 2012 at 1:49 fuxia 107k38 gold badges255 silver badges459 bronze badges asked Dec 17, 2012 at 1:22 Harvey M.Harvey M. 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

In every good theme, the </body> tag is located in the footer.php file.

However, unless you're using a child theme, any modification will be lost on a theme update. That's why it's better to use the wp_footer filter hook like so:

add_action( 'wp_footer', 'wpse_76330_aweber_tracking_code' );

function wpse_76330_aweber_tracking_code() { ?>

    %%%% insert tracking code here %%%%

<?php }

本文标签: htmlWhat file is the ltbodygt tag located in Genesis default theme