Les dejo todo el loop:
Código PHP:
  
<section class="col">
       <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
       
        <article id="post" class="ye">
        <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
        
        <?php the_excerpt(); ?>
        
        </article>
        
              <?php endwhile; ?>
<div class="navigation">
     <div class="pagination-centered"><?php if(function_exists('pagenavi')) { pagenavi(); } ?></div>
  </div>
<?php else : ?>
  <h2 class="center">Not Found</h2>
 <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
  <?php endif; ?>
       </section>
 
       <aside class="col4">
        <div class="ym-gbox-right ym-clearfix">
<?php get_sidebar(); ?>
</div>
</aside>   
 

