是否仅限父母的海关纳税档案?

时间:2015-08-20 作者:user4630

是否可以有一个页面,该页面仅显示自定义税父级列表,并且每个自定义税仅显示一个帖子,即指向父级存档的链接

因此,尽管海关税可能有x个帖子和x个子海关税,但它基本上只是显示一个指向海关税存档页面父页面的链接。

因此,本质上是一个存档页面,只供自定义税务家长使用,而忽略其中的帖子。

我可以使用页面模板手动执行此操作,并单独查询每个自定义税,但我想知道是否可以动态执行此操作。

我有以下内容,但它吐出了该类别内的所有帖子。也许需要get\\U条款,我不确定?

<?php

                    $args = array(
                       \'posts_per_page\' => -1,
                        \'post_type\' => \'product\',
                        \'tax_query\' => array(
                                    array(
                                        \'taxonomy\' => \'product-area\',
                                        \'field\' => \'slug\',
                                        \'terms\' => array(\'insulation\',\'drylining-plastering\'),
                                        \'include_children\' => false
                                    )
                                )
                    );
                    $products_tax = new WP_Query( $args );


                   if($products_tax->have_posts()) : 
                      while($products_tax->have_posts()) : 
                         $products_tax->the_post();
                ?>

                <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                    <?php the_title(); ?>
                </a></h2>


                <?php
                      endwhile;
                   else: 
                ?>

                      Oops, there are no posts.

                <?php
                   endif; 
                   wp_reset_postdata();
                ?>

1 个回复
SO网友:user4630

我自己已经设法解决了这个问题,所以如果有人需要帮助,请尝试以下方法。。。

使用get\\u术语,而不是尝试直接查询它。

<?php 

                    $terms = get_terms(\'custom-tax-name\', array(\'hierarchical\' => false));
                    foreach ($terms as $term) {


                    $term_link = get_term_link( $term );

                     if ( have_posts() ) :

                 ?>


                     <a href="<?php echo $term_link; ?>">
                     <?php echo \'<h3>\'.$term->name.\'</h3>\'; ?>


                    </a>

                <?php endif; wp_reset_query(); } ?>

结束

相关推荐