Hopefully I am not the only one who needs this but sure is hard to find answer . I want to list all my pages in the nav of my static home page. When you click on a page THEN you will see all the child menus for that page only. I do not want the child menus displayed on the home page. I have written the code that works great for displaying the child menus but the main menu will not display anything. Little Help? This works great for displaying the child menus-why can't I see pages on home page? <?php if ($post->post_parent) { $parent = $post->post_parent; } else { $parent = $post->ID; } wp_list_pages("title_li=&child_of=$parent"); ?> Code (markup):