Created
June 14, 2017 16:28
-
-
Save asterion/a40d61f38aa09edc53c638453e39cb0a to your computer and use it in GitHub Desktop.
or category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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