Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirejordansmith/ac76c54e9ca10d750e0f to your computer and use it in GitHub Desktop.
Save hirejordansmith/ac76c54e9ca10d750e0f to your computer and use it in GitHub Desktop.
Exclude Specific Categories from the WordPress Loop
<?php
/** Exclude Specific Categories From The WordPress Loop */
add_action( 'pre_get_posts', 'hjs_exclude_categories' );
function hjs_exclude_categories( $wp_query ) {
if( !is_admin() && is_main_query() && is_home() ) {
$wp_query->set( 'cat', '-5' );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment