我试图显示与分类法(不是术语)相关的所有帖子,但似乎不起作用。
<?php
$args = array(
\'post_type\' => \'projects\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'clients\',
\'terms\' => \'Unilever\'
)
)
);
$the_query = new WP_query();
$the_query->query($args);
if($the_query->have_posts()):while($the_query->have_posts()):$the_query->the_post();
php the_title();
endwhile; endif;
wp_reset_query();
?>