Created
February 11, 2015 21:05
-
-
Save nickdavis/56ff8f9cdb7cbd417aed to your computer and use it in GitHub Desktop.
Remove blog section from homepage of Education Pro theme by StudioPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add this to your functions.php file, excluding the opening <?php | |
add_action( 'wp_head', 'nd_remove_homepage_blog' ); | |
// Remove blog section from homepage | |
function nd_remove_homepage_blog() { | |
if ( is_front_page() || is_home() ) { | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.home .site-inner { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment