我需要wp_list_pages(wordpress)的帮助。
我想在page.php上显示父母下的所有子页面 使用此代码,它的工作正常,但我没有title-attribute:
<?php
if($post->post_parent) {
// show all child of parent, exclude self
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&exclude=".$post->ID."");
$titlenamer = get_the_title($post->post_parent);
} else {
// show all child of parent
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
$titlenamer = get_the_title($post->ID);
}
if ($children) { ?>
<h2><?php echo $titlenamer; ?></h2>
<ul id="zp_list_pages">
<?php echo $children; ?>
</ul>
<?php }
?>
搜索结束后我找到了这个workaround,但这显示了所有页面,而不仅仅是孩子们。
有没有人有解决方案?
谢谢:)