您可以使用wp_list_pages()
相反如果您试图列出页面以外的内容,只需输入您的帖子即可:
<ul>
<?php wp_list_pages(array(
\'post_type\' => \'yourposttype\',
\'title_li\' => \'\'
) ); ?>
</ul>
如果要在所有帖子类型上显示此内容,可以使用
<ul>
<?php wp_list_pages(array(
\'post_type\' => $post->post_type,
\'title_li\' => \'\'
) ); ?>
</ul>
这将自动获取当前查看项目的帖子类型,并显示该帖子类型的完整树。