我创建了一个自定义帖子类型“ FAQ”和一个自定义分类法“ faq_categorie”。我已经打印了所有使用的分类法的列表:
<?php $categories = get_categories('taxonomy=faq_categorie&post_type=qa'); ?>
<?php foreach ($categories as $category) : ?>
<span data-slug="<?php echo $category->slug; ?>"><?php echo $category->name; ?></span>
<?php endforeach; ?>
此循环显示了FAQ中的所有帖子:
<?php $args = array('post_type' => 'qa'); ?>
<?php $loop = new WP_Query($args); ?>
<?php if ( $loop->have_posts() ) : while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="faq__question">
<div class="faq__content__question">
<?php the_title(); ?>
</div>
<div class="faq__content__answer">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
但是如何将分类标准段作为类添加到class =“ faq_question”?