Merhabalar,
Custom field ile thumbnail gösterimi yapan temada kodlarda bir hata görememe rağmen thumbnail oluşturmak yerine direk aynı boyuttaki resmi getiriyor.
Görebildiğiniz bir hata varsa yardımcı olursanız sevinirim.

<?php 
                        $the_query = new WP_Query('category_name=' . $featuredcat . '&showposts=5&orderby=post_date&order=desc');
                        
                        $counter = 0;
                                        
                        while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
                ?>
                
                <?php $counter++; ?>
 
                <?php if ( get_post_meta($post->ID, 'thumb', true) ) { ?> <!-- DISPLAYS THE IMAGE URL SPECIFIED IN THE CUSTOM FIELD -->
                        
                        <li <?php if ($counter == 5) { ?>class="last"<?php } ?>><a href="#post-<?php the_ID(); ?>"><img src="<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>" alt=""/></a></li>                        
                        
                <?php } else { ?> <!-- DISPLAY THE DEFAULT IMAGE, IF CUSTOM FIELD HAS NOT BEEN COMPLETED -->
                        
                        <li <?php if ($counter == 5) { ?>class="last"<?php } ?>><a href="#post-<?php the_ID(); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/no-img-thumb.jpg" alt=""/></a></li>
                        
                <?php } ?>           
                
                <?php endwhile; ?>