Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/04/2013, 11:17
fr1974
 
Fecha de Ingreso: noviembre-2007
Mensajes: 498
Antigüedad: 17 años
Puntos: 20
Exclamación Paginación y mostar thumbs por post

Hola a todos , tengo un script creado para wordpress con el cual se muestran los posts de una determinada categoría como también los datos de cada post , pero tengo un problemilla con mostrar los thumbs y la paginacion

Quería saber como implementar estas dos cosas , les dejo mi actual código


Código PHP:
<style>

.cols_posts
{
float:left;
position:relatve;
width:48%;
border:1px solid;

}

</style>


<?php if (have_posts()) : ?>


<?php query_posts'cat=36&posts_per_page=4' );
while (
have_posts()) : the_post(); ?>
<div class="cols_posts">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="extracto"><?php the_excerpt(); ?></div>
</div>
</div>
<?php endwhile; ?>





<?php query_posts'cat=36&posts_per_page=4');
while (
have_posts()) : the_post(); ?>
<div class="cols_posts">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="extracto"><?php the_excerpt(); ?></div>
</div>
</div>
<?php endwhile; ?>



<?php else : ?>
Vacio
<?php endif; ?>




Un saludo y muchas gracias