Forums

Parent page name (2 posts)

  1. stevenoi
    Member
    Posted 2 years ago #

    I need a code that display's the parent page name only if the page has a parent, I already got a little code, but that will display also on the parent page itself. E.g. About > About.

    Like :
    About ( the parent )
    About > Meet the team ( Children )
    About > Meet the team > John ( Grandchildren )

  2. MichaelH
    Volunteer
    Posted 2 years ago #

    <?php
    $pages = get_pages('sort_column=post_date&sort_order=desc');
    foreach($pages as $page) {
    //echo "<pre>"; print_r($page); echo "</pre>";
    echo 'page parent id ' . $page->post_parent;
    }
    ?>

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.