如何获取所选分类中的所有帖子自定义帖子类型?

时间:2015-03-30 11:18:49

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

我有一个名为' faq'的帖子类型和分类学称为'类型'在我的模板中创建了一些分类术语" Design"," Print"," Display"等

我想要实现的想法是仅显示属于指定分类(类型)的帖子而不重复。每篇文章可能被分配到多个分类(类型)。

只要帖子只分配了一个分类法,我当前的代码就可以正常工作。一旦我分配了多个分类,它就会显示重复的帖子,如下所示:

  • 问题6
  • 问题5
  • 问题1
  • 问题1

这是我目前的代码:

                        <?php

                        $post_type = 'faq';
                        $tax = 'type';
                        $faq_types = get_field('types');

                        $filtered = array();

                        $termargs = array( 'include' => $faq_types );
                        $tax_terms = get_terms($tax, $termargs);

                        if ($tax_terms) {
                          $i = 1;
                          foreach ($tax_terms as $tax_term) {

                            $args=array(
                              'post_type' => $post_type,
                              $tax => $tax_term->slug,
                              'post_status' => 'publish',
                              'posts_per_page' => -1,
                              'caller_get_posts'=> 1
                            );

                            $my_query = null;
                            $my_query = new WP_Query($args);

                            if( $my_query->have_posts() ) {

                              while ($my_query->have_posts()) : $my_query->the_post(); ?>

                                <div class="accordion-section">
                                    <a class="accordion-section-title" href="#accordion-<?php echo $i; ?>"><i class="fa fa-chevron-right"></i> <?php the_title(); ?></a>

                                    <div id="accordion-<?php echo $i; ?>" class="accordion-section-content">
                                        <?php the_content(); ?>
                                    </div>
                                </div>

                                <?php
                              $i++;    
                              endwhile;
                            }
                            wp_reset_query();

                          }
                        }

                        ?>

我非常感谢任何帮助让我按照我需要的方式工作。

1 个答案:

答案 0 :(得分:2)

您当前的循环是说“对于每个分类术语,显示与该术语相关联的所有帖子”,因此如果有一个帖子与多个术语相关联,它当然会重复。将您的查询从foreach循环中移出,并使用带有一系列术语的单一税务查询:

$args = array(
    'post_type' => $post_type,
    'tax_query' => array(
        array(
            'taxonomy' => $tax,
            'field'    => 'slug',
            'terms'    => $term_slugs,
        ),
    ),
    'post_status' => 'publish',
    'posts_per_page' => -1,
    'caller_get_posts'=> 1
);

修改

顺便说一句,您需要将术语对象数组转换为术语slug数组才能使其正常工作:

$term_slugs = array();
foreach( $tax_terms as $term ) {
    $terms_slugs[] = $term->slug; 
}