• 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 )

Viewing 1 replies (of 1 total)
  • <?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;
    }
    ?>
Viewing 1 replies (of 1 total)

The topic ‘Parent page name’ is closed to new replies.