是否可以有一个页面,该页面仅显示自定义税父级列表,并且每个自定义税仅显示一个帖子,即指向父级存档的链接
因此,尽管海关税可能有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();
?>