仅显示父自定义帖子类型的子帖子,而不是所有子帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仅显示父自定义帖子类型的子帖子,而不是所有子帖子相关的知识,希望对你有一定的参考价值。

Show only children posts of a parent custom post type, not all child posts
  1. <?php $loop = new WP_Query( array( 'post_type' => 'products', 'post_parent' => 0, 'posts_per_page' => 30, 'order' => 'ASC' ) ); ?>
  2.  
  3. <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  4.  
  5. <div class="navigation">
  6. <div class="content">
  7. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  8. <a href="<?php the_permalink() ?>" class="hotspot" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('product-thumbnail'); ?></a>
  9. </div>
  10. </div>
  11.  
  12. <?php endwhile; ?>

以上是关于仅显示父自定义帖子类型的子帖子,而不是所有子帖子的主要内容,如果未能解决你的问题,请参考以下文章

排除父帖子并在存档中仅显示子帖子

自定义帖子类型的 WooCommerce 产品

如何在wordpress中检查帖子是不是属于分类类别的子类别

仅显示特定自定义帖子类型的自定义分类计数

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

仅显示登录用户的帖子