根据当前页面,我列出了属于父祖先的所有页面的链接。然而,当我访问孙子时,链接层次结构中的顶部父页面将消失。这就是我所尝试的:
<?php
// display the sub pages from the current page item
if($post->post_parent) {
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
$titlenamer = get_the_title($post->post_parent);
$permalink = get_permalink($post->post_parent);
} else {
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
$titlenamer = get_the_title($post->ID);
$permalink = get_permalink($post->ID);
}
if ($children) {
?>
<h2><a href="<?php echo $permalink; ?>"><?php echo $titlenamer; ?></a></h2>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
我想要的是根据当前查看的页面按层次列出所有带有子页面的页面。