Add this code in functions.php for Customize Footer in Genesis Child Theme:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php //* Remove the site footer remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); remove_action( 'genesis_footer', 'genesis_do_footer' ); remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 ); //* Customize Footer in Genesis Child Theme add_action( 'genesis_footer', 'custom_footer' ); function custom_footer() { ?> <footer itemtype="http://schema.org/WPFooter" itemscope="itemscope" role="contentinfo" class="site-footer"> <!-- Add Your Footer Custom Code Here --> </footer> <?php } |