我正在使用这个代码
<?php
$children = wp_list_pages(\'title_li=&child_of=\'.$post->ID.\'&echo=0\');
$subpages = ($post->post_parent) ? wp_list_pages(\'title_li=&child_of=\'.$post->post_parent.\'&echo=0\') : wp_list_pages(\'title_li=&child_of=\'.$post->ID.\'&echo=0\') ;
if ($children) { ?>
<li><?php echo $children; ?></li>
<?php } else { ?>
<?php echo $subpages; ?>
<?php } ?>
此代码在父页面上显示子页面,如果没有子页面,它将显示父页面(兄弟)的子页面。
然而,我需要限制它只显示5页,类似于showpost=5页的帖子,我还没能做到,有什么帮助吗???