I have this code :
if($pf_categorynotin){
$args['tax_query'] = array(
array(
'taxonomy' => 'portfolio_category',
'field' => 'slug',
'terms' => $pf_categorynotin,
'operator' => 'NOT IN'
)
); //category__in
}
It has one taxonomy defined which is portfolio_tag. What I want to do is to add another taxonomy like portfolio_tag
I'm not sure if will work like this: 'taxonomy' => 'portfolio_category', 'portfolio_tags',
Basically what I want to do is add also another taxonomy in that array.