Add the following code to your theme’s function.php file, or a functionality plugin to replace the Genesis Theme’s Footer.
remove_action('genesis_footer', 'genesis_do_footer');
add_action('genesis_footer', 'custom_footer');
function custom_footer() {
require(CHILD_DIR.'/cust-foot.php');
}
Share Your Two Cents