Getting the Intersection of Two Custom Taxonomy Terms for a Custom Post Type?
As of v1.3, the Query Multiple Taxonomies plugin works great with WP_Query. Your original args work as is. $args = array( ‘post_type’ => ‘portfolio’, ‘numberposts’ => -1, ‘project_type’ => ‘A’, ‘package’ => ‘A’ ); Then make a new query and check it: $foo = new WP_Query($args); var_dump($foo->posts); I tested this on my own custom taxonomy … Read more