Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created February 22, 2015 00:33
Show Gist options
  • Save arkadiusjonczek/36a9062f717e594a4812 to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/36a9062f717e594a4812 to your computer and use it in GitHub Desktop.
WordPress: Remove content on front page
// insert into functions.php
add_action( 'genesis_before','remove_homepage_content' );
function remove_homepage_content() {
if (is_front_page() ) {
remove_action( 'genesis_loop', 'genesis_do_loop' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment