Forums

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

Home Forums Back End Is this possible to do in WordPress??? Re: Is this possible to do in WordPress???

#58801

No it won’t. If you want to list the child pages you can specify child_of=5. If you want to have both the page and all its children you can use the following snippet:

Code:
“;
wp_list_pages(“title_li=&link_after=
    $child_pages

&include=$pageid”);
echo ““;
?>