me anduvo este código por ahora
Código:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( has_post_thumbnail() ) { // Verifica que haya un thumbnail (imagen destacada) asignada a ala entrada. ?>
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_post_thumbnail( 'thumbnail' ); } ?>
</a>
<?php endwhile; else: ?>
<?php endif; ?>