Hi,
Currently I'm using this code:
<?php
if($post->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) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
to get a list of child pages when on a child page.
This is now output as an ul with li-items. What I would like is to get the thumbnails for the li-items. My guts tells me I need to do some foreach-loop on the list items, but I've got no idea how to do that.
Hope somebody can help me with this.
Cheers
Michael