Skip to content

Instantly share code, notes, and snippets.

@ideag
Created May 8, 2016 18:56
Show Gist options
  • Save ideag/b4b690f29f0648c426571b4ad2a872a0 to your computer and use it in GitHub Desktop.
Save ideag/b4b690f29f0648c426571b4ad2a872a0 to your computer and use it in GitHub Desktop.
<?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