Ver Mensaje Individual
  #5 (permalink)  
Antiguo 20/10/2010, 03:17
Nachoseo
 
Fecha de Ingreso: enero-2008
Ubicación: Madrid
Mensajes: 72
Antigüedad: 16 años, 3 meses
Puntos: 1
Respuesta: porque imagenes en wordpress se ven en post y no en listado

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 &raquo;</p>'); ?>
                </div>

                <p class="postmetadata"><?php the_tags('Tags: '', ''<br />'); ?> Categor&iacute;as: <?php the_category(', '?> <?php edit_post_link('Editar'''' | '); ?> </p>

            </div>

        <?php endwhile; ?>
Gracias y un saludo