Si te fijas,
no estás usando the_post_thumbnail() en ningún lugar, lo que estás haciendo es poniendo un nombre a un id para que te identifique el post en cuestión, osea, estás modificando en html.
La linea 13 déjala hasta el cierre del h3:
Código PHP:
Ver original<h3 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
y a continuación, en la linea 14 pones
esto
Código PHP:
Ver original<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
Y luego the_content()... Al final debe quedarte algo así:
Código PHP:
Ver original<h3 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
the_content();
?>
Fíjate que he cambiado en el título, la disposición de las etiquetas a y h3: antes era <a><h3>... </h3></a>, ahora es <h3><a>... </a></h3>, lo cual es solo cuestión de organizar bien tu código