Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WP Navigation with Child Pages

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28270
    marcott
    Member

    I have run into a wall…

    I am trying to create navigation that goes three layers deep (figured that a diagram would be easier to understand):

    [Parent A] [Parent B] [Parent C]

    [Child Page A-1] [Child Page A-2] [Child Page A-3]

    [Grandchild Page A-1-1] [Grandchild Page A-1-2] [Grandchild Page A-1-3]

    The first row has link to the parent pages. When you are on one of these pages the sub page link are not displayed. When you click or hover over [Parent A] I would like links to its children to be displayed. If you then click on the link to the child page its children will be displayed ([Grandchild Page A-1-1]).

    Using the following code I have the first two steps down but I cannot seem to figure out how to get the third level to display.

    Code:

    post_parent)
    $children = wp_list_pages(“title_li=&child_of=”.$post->post_parent.”&echo=0″); else
    $children = wp_list_pages(“title_li=&child_of=”.$post->ID.”&echo=0″);
    if ($children) { ?>

    Any suggestions would be greatly appreciated!

    #71992
    marcott
    Member

    Does anyone know if it is possible to list grandchild pages in a separate ul element?

    <ul>Top Level Pages</ul>

    <ul>Child Pages</ul>

    <ul>Grandchild Pages (should the grandchild’s parent be selected)</ul>

    #72130
    marcott
    Member

    Found a temporary work around but is is not very elegant. If I come up with a better solution I will post it here.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Back End’ is closed to new topics and replies.