我目前有以下代码从特定类别中提取了10篇最新的帖子,我想将这些帖子过滤到我设置的称为文章类型的特定自定义分类法中。
要合并此筛选器,我需要修改什么?
<div id="btcc" class="main-headline-box">
<h2>Features</h2>
<?php $btcc_query = new WP_Query(\'category_name=btcc&showposts=10\'); ?><ul>
<?php while ($btcc_query->have_posts()) : $btcc_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" title="Permanent Link to:
<?php the_title_attribute(); ?>">
<?php the_title(); ?></a></li>
<?php endwhile; ?><li class="read-more"><a href="">Read more from the BTCC Archive</a></li></ul>
</div>