Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created April 11, 2017 09:22
Show Gist options
  • Save ScarletPonytail/a819e87cf85eccbbdc4931267f02cb8e to your computer and use it in GitHub Desktop.
Save ScarletPonytail/a819e87cf85eccbbdc4931267f02cb8e to your computer and use it in GitHub Desktop.
WordPress - Blog only showing particular category
// Blog only showing particular category
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '7'); } }
add_action( 'pre_get_posts', 'my_home_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment