I am using 'wp_list_pages' on a page of a website I am building to display all of the parent pages.
However each page has a thumbnail image which is assigned via meta tags.
How can I include extra infromation to the generated list such as <img src="<?php $values = get_post_custom_values("page_thumb"); echo $values[0]; ?>" /> and other css etc.
Is there a way I can break up the 'wp_list_pages' to see the full output code and pop things inside that?
Many thanks for any response.