Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created September 17, 2018 14:00
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 cre8tivediva/f7fccc719470f177b74dca6b48cdbc2d to your computer and use it in GitHub Desktop.
Save cre8tivediva/f7fccc719470f177b74dca6b48cdbc2d to your computer and use it in GitHub Desktop.
Display One Category on the Home Page
// Display one category on the home page
function c8d_display_one_category_home( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', 'ENTER YOUR CATEGORY ID NUMBER HERE' );
}
}
add_action( 'pre_get_posts', 'c8d_display_one_category_home' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment