Using post thumbnails for custom header images -- works fine on straight pages. But custom templates that load a loop (including index) are pulling the first image instead of using the one set in the featured image field.
Anyone seen this before?
Thanks!
-m
<?php $args = array('post_type' => 'people', 'category_name'=> 'current'); $people_posts = new WP_Query($args); if($people_posts->have_posts()) : while($people_posts->have_posts()) : $people_posts->the_post(); ?>etc etc.... – Martin Feb 2 at 3:43