为了检查我是否理解您的问题,您想在每个父帖子下显示子帖子吗?
那样的话,你得再写一封WP_Query
在您的while
循环,父项作为循环中的当前post。
类似于:
if ($query->have_posts()) :
?>
<?php while ($query->have_posts()) : $query->the_post();
?>
<div class="col-md-3 col-sm-6 wow fadeInRight">
<div class="products_cat">
<div class="img_cls">
<?php
if (has_post_thumbnail()) {
the_post_thumbnail(\'full\');
}?>
</div>
<div class="clearfix"></div>
<h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></h2>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
?>
编辑:
将单个产品归档。php和add
$child_query = new WP_Query(array(\'post_type\' => \'products\', \'post_parent\' => get_the_ID(), \'posts_per_page\' => \'-1\'));
while ($child_query ->have_posts()) : $child_query ->the_post();
?>
<div class="col-md-3 col-sm-6 wow fadeInRight">
<div class="products_cat">
<div class="img_cls">
<?php
if (has_post_thumbnail()) {
the_post_thumbnail(\'full\');
}?>
</div>
<div class="clearfix"></div>
<h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></h2>
</div>
</div>
<?php
endwhile;
请检查语法错误并添加尚未指定的必要代码。很抱歉,经过这么多的编辑,我忘记了缩进。