我尝试了很多代码片段......但没有任何效果。我需要一个显示子页面和子页面的菜单:
On a page:
- Subpage 1 <-- You are here
- Subpage 2
-- Child 1
-- Child 2
-- Child 3
- Subpage 3
和
On a child page:
- Subpage 1
- Subpage 2
-- Child 1
-- Child 2 <-- You are here
-- Child 3
- Subpage 3
菜单应仅显示顶部父页面的子页面和子页面。不是所有的Wordpress子页面。
编辑:例如,我试过这个,但在子页面或子页面上,它什么都没有显示
<?php
global $post;
wp_list_pages( array(
'title_li' => '',
'child_of' => $post->ID,
'show_date' => 'modified',
'date_format' => $date_format
) );
?>