Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/04/2013, 07:53
gastro
 
Fecha de Ingreso: enero-2006
Mensajes: 94
Antigüedad: 18 años, 3 meses
Puntos: 2
Respuesta: Lista miniaturas en el loop

Muchísimas gracias por la ayuda!!

Acabo de hacer un breve código que mostraría todas los títulos, thumbnail y excerpt de cada entrada. No sé si es correcto del todo.

Ahora solo me faltaría hacer un while por cada categoría, mostrando un número limitado de posts (5, por ejemplo). ¿Cómo se implementaría lo que queda de código?

Código PHP:
<div id="Contenedor">
<?php

if(have_posts()) :
    while(
have_posts()) :
        
the_post();
?>
            <div class="post" id="post-<?php the_ID(); ?>">
                <h1 class="titulo"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
                <div class="postImagen">
                   <?php if ( has_post_thumbnail() ) ?>
                    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a> <?php endif; ?>
                </div>
                <div class="postExcerpt">
                    <?php the_excerpt(); ?>
                </div>
            </div>
</div>
Gracias otra vez :)