Basically the theme is just generating a thumbnail and linking to the latest posts (through meta data and custom fields), not actually displaying any part of the post.
All I want to display from the pages are thumbnails (which will link to the pages), titles and some custom field data. Know what I mean?
So I don’t really want to display the pages per say, just some of the data associated with them.
Really? Is there any reason for that? I thought it could be accomplished in some trivial way like replacing
<?php while ( have_posts() ) : the_post ()?>
with
<?php while ( have_pages() ) : the_page ()?>
It sounds like I might just have to hard code everything in, though.