我遇到了类似的情况Dave。这段代码达到了我的目的。这不是世界上最精简的选择,但它做得很好:
// Get all term ID\'s in a given taxonomy
$taxonomy = \'taxonomy_name\';
$taxonomy_terms = get_terms( $taxonomy, array(
\'hide_empty\' => 0,
\'fields\' => \'ids\'
) );
// Use the new tax_query WP_Query argument (as of 3.1)
$taxonomy_query = new WP_Query( array(
\'tax_query\' => array(
array(
\'taxonomy\' => $taxonomy,
\'field\' => \'id\',
\'terms\' => $taxonomy_terms,
),
),
) );
希望这能帮助您或其他遇到此问题的人。
凯文