//* Remove default Genesis featured image
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
add_action( 'genesis_before_entry', 'ch_remove_featured_image_on_home_or_front_page');
function ch_remove_featured_image_on_home_or_front_page() {
if ( is_home() || is_front_page() ) {
return;
}
add_action( 'genesis_entry_content', 'genesis_do_post_image', 1 );
}

