Skip to content

Instantly share code, notes, and snippets.

@michaelmusgrove
Created January 13, 2016 07:08
Show Gist options
  • Save michaelmusgrove/c6fbbf7fedda0b478045 to your computer and use it in GitHub Desktop.
Save michaelmusgrove/c6fbbf7fedda0b478045 to your computer and use it in GitHub Desktop.
function my_home_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '11'); } } add_action( 'pre_get_posts', 'my_home_category' );
@michaelmusgrove
Copy link
Author

This is how to post posts from a single category on the home page. Plop in functions.php and change the category #.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment