Hola American2010
Donde no veo las imágenes en el listado de post cuando hago clic en una de las categorías. La función the_content() está dentro del loop. Te dejo el trozo de código para que veas:
Código PHP:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>" class="h2archive"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entrada">
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Categorías: <?php the_category(', ') ?> <?php edit_post_link('Editar', '', ' | '); ?> </p>
</div>
<?php endwhile; ?>
Gracias y un saludo