Skip to content

Instantly share code, notes, and snippets.

@CoachBirgit
Created January 13, 2016 15:59
Show Gist options
  • Save CoachBirgit/5eaf2e1d46e95264134e to your computer and use it in GitHub Desktop.
Save CoachBirgit/5eaf2e1d46e95264134e to your computer and use it in GitHub Desktop.
Exclude categories from blog homepage with the Genesis Framework.
<?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