顶层页面-二级页面-子页面-子页面
这里的目标是列出所有第二级的孩子,我已经从抄本中完成了。然而,当我点击一个孩子时,孩子们应该仍然会显示出来,因为从技术上讲,我们仍然处于第二级。
<?php
// Globalize the $post variable;
// probably already available in this context, but just in case...
global $post;
wp_list_pages( array(
// Only pages that are children of the current page
\'child_of\' => $post->ID,
// Only show one level of hierarchy
\'depth\' => 1
) );
?>