自定义帖子类型循环中的分类法标签

时间:2018-10-16 14:21:46

标签: wordpress custom-post-type custom-taxonomy

我创建了一个自定义帖子类型“ 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”?

0 个答案:

没有答案