Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 27, 2014 16:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save billerickson/9253556 to your computer and use it in GitHub Desktop.
**
* Customize Blog Query
*
*/
function be_blog_query( $query ) {
if( $query->is_main_query() && !is_admin() && $query->is_home() ) {
$query->set( 'category_name', array( 'cat-1', 'cat-2', 'cat-3' ) );
}
}
add_action( 'pre_get_posts', 'be_blog_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment