我不确定您是否正在查找分类查询。。。或者一种获取条款的方法,这些解决方案中是否有一个能回答您的问题。请不要投反对票,因为我的信息非常有限,在这里猜测你需要什么。
<?php
$args = array(
\'post_type\' => \'post-type\',
\'posts_per_page\' => 5,
\'tax_query\' => array(
array(
\'taxonomy\' => \'taxname_tax\',
\'field\' => \'slug\',
\'terms\' => \'term-to-query\'
)
)
);
$listing_query = new WP_Query($args);
?>
<?php if ( $listing_query->have_posts() ) : while ( $listing_query->have_posts() ) : $listing_query->the_post(); ?>
<?php the_title(); ?>
<?php endwhile; endif; // end of taxonomy query loop. ?>
<?php wp_reset_postdata(); ?>
// or a taxonomy lookup
<?php $terms = get_the_terms( $post->ID, \'taxonamy_tax\' ); ?>
<?php foreach( $terms as $term ) echo $term->slug; ?>