Es una buena recomendacion, aun asi esta no es una respuesta que ayude ni al k necesita la respuesta, ni a los otros miembros del foro que fuera a buscar la solucion aqui.
Creo que talvez este
código te ayudara
(viene con miniatura incluida)
Código PHP:
<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=5'); ?>
<?php while ($popular->have_posts()) : $popular->the_post(); ?>
<?php $justanimage = get_post_meta($post->ID, 'thumbnail', true);
if ($justanimage) { ?>
<img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" alt="<?php the_title(); ?>" />
<?php } else { ?>
<img src="<a href="http://an-alternative-image.jpg"" rel="nofollow">http://an-alternative-image.jpg"</a>; alt="" />
<?php } ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; ?>
FUENTE