Skip to content

Instantly share code, notes, and snippets.

@adamharley
Created August 23, 2011 16:39
Show Gist options
  • Save adamharley/1165785 to your computer and use it in GitHub Desktop.
Save adamharley/1165785 to your computer and use it in GitHub Desktop.
WP categories on home (blog) page
<?php
function category_homepage( $query ) {
if ( $GLOBALS['wp_the_query'] != $query || ! $query->is_home() ) // Only filter the main query on the blog page
return;
$categories = array( 1, 2, 3 );
$query->set('category__in', $categories);
}
add_action( 'pre_get_posts', 'category_homepage' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment