将附加类别“特色”分配给类别“医疗”中的帖子。
在类别模板中,使用查询\'category__and\' => array(3, 27)
示例(假设“medical”为cat 3,“Characterized”为cat 27):
<?php $args = array(
\'category__and\' => array(3, 27),
\'posts_per_page\' => 1
);
$feature = new WP_Query( $args );
if( $feature->have_posts() ) : while( $feature->have_posts() ) : $feature->the_post(); ?>
<div class="featured">
ANY POST OUTPUT <?php the_title(); ?>
</div>
<?php endwhile; endif; ?>