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
 
 
 Paginación y mostar thumbs por post
 Paginación y mostar thumbs por post 



