X Church Theme <body> </body>

Hi there,
I need to add a bit of code before the closing tag but can’t find it anywhere on the Church X theme.
There isnt a tag in the ,header file
Has anyone found a way around this?

Hi there,

You can have the code added through the functions.php of the child theme.

add_action('wp_footer', 'add_code_footer');

function add_code_footer() {
?>
    <!-- Add the code here -->
<?php }
```

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.