Código PHP:
<?php
if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<article class="post" id="post-<?php the_ID(); ?>">
<section id="thumbnail"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(150,150)); ?></a>
</section>
<section id="post-contenido">
<section id="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></section>
<section class="excerpt"> <?php the_excerpt2('160'); ?></section>
</section>
</article>
<section style="clear:both;"></section>
<section class="leer">
<section class="leer-mas"><a href="<?php the_permalink(); ?>" title="Leer más sobre: <?php the_title(); ?>">Leer más</a></section> | <a href="<?php the_permalink(); ?>/#disqus_thread"><img src="<?php echo get_template_directory_uri(); ?>/images/comment.png" width="12" /> <?php comments_number( '0 Comentarios', '1 Comentario', '{num} Comentarios' ); ?></a>
<section class="info-post"><?php the_author_posts_link(); ?> - <time><?php echo 'Hace '. human_time_diff(get_the_time('U'), current_time('timestamp')); ?></time></section>
</section>
<hr style="color:#cecece; opacity: 0.3;
filter: alpha(opacity=30);" />
<?php endwhile; ?>
<section class="paginador">
<?php wp_pagenavi(); ?>
</section>
<?php endif; ?>