尝试以下操作:
$query = new WP_Query(array(
\'post_type\'=>\'courses\',
\'nopaging\'=>true,
\'tax_query\'=> array(
array(\'taxonomy\'=>\'courses_category\',
\'field\'=>\'slug\',
\'terms\'=>\'recursos-humanos\'//replace this with the term slugs
)
)
));
我可能会对上面的三个术语使用三个查询(使用分类术语的slug更改“terms”值)。您可以使用一个按帖子类型排序的查询将所有三个术语链接在一起。