I set a page as child and it disapears from the public view. I can still see it from the manage pages area.
I set a page as child and it disapears from the public view. I can still see it from the manage pages area.
The display of the pages depends upon the theme that you are using,
here is how pages are displayed.
wp_list_pages();
in your theme that is active on the blog at the moment must have something like this in the code,
wp_list_pages('depth=1');
you need to change that to wp_list_pages('depth=0&title_li=');
to correctly display child pages inside your pages menu.
This topic has been closed to new replies.