Often when we are working with the Genesis Framework and WordPress we need to remove the footer widgets from the homepage only. Here’s how to quickly do it:
Add this block of code to your functions.php file:
add_action( 'genesis_before', 'child_conditional_actions' );
function child_conditional_actions() {
if( is_home() )
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
}












