列出当前页面父级的子页面

时间:2013-03-08 10:42:18

标签: wordpress wordpress-theming

我正在使用版本3.5.1开发WordPress主题,并且在每个页面中我想显示一个侧面垂直菜单,显示属于当前页面父页面的所有页面。 我试过这个:

<?php
    $args = array( 
        'sort_column' => 'menu_order',
        'child_of' => $post->parent
    );
?>
<ul>
    <?php wp_list_pages($args);  ?>
</ul>

但我列出的是每个父页面,而不是我假装的内容。 这样做的最佳方法是什么?

非常感谢你!

1 个答案:

答案 0 :(得分:1)

这是语法错误。

试试这个:'child_of' => $post->post_parent

这应该返回您所在页面的兄弟姐妹。