仅显示父自定义帖子类型的子帖子,而不是所有子帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仅显示父自定义帖子类型的子帖子,而不是所有子帖子相关的知识,希望对你有一定的参考价值。
Show only children posts of a parent custom post type, not all child posts
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="navigation"> <div class="content"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <a href="<?php the_permalink() ?>" class="hotspot" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('product-thumbnail'); ?></a> </div> </div> <?php endwhile; ?>
以上是关于仅显示父自定义帖子类型的子帖子,而不是所有子帖子的主要内容,如果未能解决你的问题,请参考以下文章
如何在wordpress中检查帖子是不是属于分类类别的子类别