Created
September 17, 2018 14:00
-
-
Save cre8tivediva/f7fccc719470f177b74dca6b48cdbc2d to your computer and use it in GitHub Desktop.
Display One Category on the Home Page
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
// 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