Here is what I am trying to do.
I would like to list the child pages of FUN without list all the parent pages.
I tried
< ?php wp_list_pages('depth=3' . 'child_of=159'); ? >
but that shows all of the parents and other child pages.
I tried
< ?php wp_list_pages('child_of=159' . 'depth=2'); ? >
but then nothing is displayed.
I'm looking for an easy way to display one level of 'fun stuff' links without having to use a bunch of excludes to eliminate the second level.