您可以使用wp_list_pages()
作用
<?php
wp_list_pages(array(
\'title_li\' => NULL,
\'child_of\' => 123, // ID of parent page
));
?>
使用内部页面循环或page.php
<?php
while ( have_posts() ) : the_post();
wp_list_pages(array(
\'title_li\' => NULL,
\'child_of\' => get_the_ID(),
));
endwhile;
?>