Created
January 13, 2016 15:59
-
-
Save CoachBirgit/5eaf2e1d46e95264134e to your computer and use it in GitHub Desktop.
Exclude categories from blog homepage with the Genesis Framework.
This file contains hidden or 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 | |
//* Do NOT include the opening php tag | |
//* Exclude categories from blog homepage | |
add_action( 'pre_get_posts', 'bg_exclude_categories' ); | |
function bg_exclude_categories( $query ) { | |
if( $query->is_main_query() && $query->is_home() ) { | |
$query->set( 'cat', '-5,-7' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment