我有自定义字段“People”,我有父页(帖子类型)和子页(帖子类型)。这是我的代码:
<?php
$args = array(
\'post_type\'=> \'people\',
\'posts_per_page\' => -1,
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) { ?>
<?php $loop->the_post();?>
<div class="title">
<a href="<?php the_permalink();?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</div>
<?php } ?>
我需要按层次顺序显示此自定义帖子类型。例如:
First parent post type
- first child of first parent post type
-second child of first parent post type
Second parent post type
-first child of second parent post type
但默认情况下,此帖子在发布时显示在other中。有什么想法,如何解决这个问题?
谢谢大家。