To avoid needing to copy the footer.php file into your child theme and customize it you can use a function in your child theme functions.php file instead:


add_action('wp_footer', 'my_custom_footer');
function my_custom_footer(){
    //Close PHP tags 
    ?>
    ADD YOUR PLAIN HTML CODE HERE
    <?php //Open PHP tags
}