If you wish to remove the wordpress loop from the homepage of a studiopress (genesis) website, you need to add in functions.php the following code at the very bottom:
[php]
add_action( ‘get_header’, ‘remove_featured_images_conditionally’ );
function remove_featured_images_conditionally() {
if ( is_home() ) {
remove_action( ‘genesis_loop’, ‘genesis_do_loop’ );
}}
[/php]
Leave a Reply