11
Jan
stored in: Wordpress and tagged:
$myquery['tax_query'] = array(
array(
'taxonomy' => 'category',
'terms' => array('category1'),
'field' => 'slug',
),
array(
'taxonomy' => 'post_tag',
'terms' => array('tag1'),
'field' => 'slug',
),
);
query_posts($myquery);