您可以使用wp\\u get\\u post\\u parent\\u id(get\\u the\\u id())获取父对象,并将其存储在一个新变量中,然后对子对象执行相同的操作,然后以您想要的任何格式显示它们。
<?php
$theParent = wp_get_post_parent_id(get_the_ID());
if ( $theParent->ID == 83 ) { ?>
<div class="parent"><?PHP echo get_the_title($theParent); ?></div>
<ul class="children"><?PHP wp_list_pages(array(
\'title_li\' => \'\',
\'child_of\' => $theParent ?> </ul>
<?PHP } ?>
希望这会有所帮助