Created
May 8, 2016 18:56
-
-
Save ideag/b4b690f29f0648c426571b4ad2a872a0 to your computer and use it in GitHub Desktop.
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
<?php | |
$args = array( | |
'post_type' => 'post', | |
'tax_query' => array(), | |
); | |
if ( $filtercategory ) { | |
$args['tax_query'][] = array( | |
'taxonomy' => 'category', | |
'terms' => $filtercategory, | |
'field' => 'term_id', | |
); | |
} | |
if ( $filtertag ) { | |
$args['tax_query'][] = array( | |
'taxonomy' => 'post_tag', | |
'terms' => $filtertag, | |
'field' => 'term_id', | |
); | |
} | |
if ( $filtercategory && $filtertag ) { | |
$args['tax_query']['relation'] = 'AND'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment