Skip to content

Instantly share code, notes, and snippets.

@asterion
Created June 14, 2017 16:28
Show Gist options
  • Save asterion/a40d61f38aa09edc53c638453e39cb0a to your computer and use it in GitHub Desktop.
Save asterion/a40d61f38aa09edc53c638453e39cb0a to your computer and use it in GitHub Desktop.
or category
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'cat1' ),
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'cat2' ),
),
),
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment