Skip to content

Instantly share code, notes, and snippets.

@davemac
Created December 10, 2011 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davemac/1454851 to your computer and use it in GitHub Desktop.
Save davemac/1454851 to your computer and use it in GitHub Desktop.
WordPress query categories and return posts that are in one category, and also could be in multiple other categories
<?php $showFactsheets->query( array( 'category__in' => array( 4, 5, 6, 7 ) , 'category__and' => array( 25 ) ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment