este es mi código del bucle:
Código:
<section>
<?php if ( have_posts() ) : ?>
<article id="padre-entradas">
<?php while (have_posts()) : the_post(); ?>
<div class="padre-entradas">
<div id="contenido-entradas">
<div class="superior-cont"></div>
<div class="cont-entrada">
<div id="titulo">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div>
<div id="entrada">
<div class="entrada-cont">
<div id="division-1">
<?php if ( has_post_thumbnail() ) {?>
<figure class="imagen">
<a href="<?php the_permalink();?>"><?php the_post_thumbnail('category-thumb');?></a></figure>
<?php }else{ ?>
<figure class="imagen">
<a href="<?php the_permalink();?>">
<img src="<?php bloginfo('template_url');?>/images/imageDefaul.png" alt="<?php the_title();?>" /></a>
</figure>
<?php }?>
</div>
<div id="division-2">
<div class="textinicio">
<?php the_excerpt();?>
</div>
<div class="leer-mas">
<button class="leer-mas"><a href="<?php the_permalink();?>" title="<?php the_title(); ?>">ver más</a></button>
</div>
</div>
</div>
</div>
<div class="inferior-cont"></div>
</div>
</div>
<div id="cont-sombra"></div>
</article>
<?php endwhile; else: ?>
<article id="padre-entradas">
<div class="padre-entradas">
<div id="contenido-entradas">
<div class="superior-cont"></div>
<div class="cont-entrada">
<div id="titulo">
<h2><?php _e('Disculpe no existen elementos'); ?></h2>
</div>
<div id="entrada">
<div class="entrada-cont">
<div id="division-1">
<?php if ( has_post_thumbnail() ) {?>
<figure class="imagen">
<a href="<?php the_permalink();?>"><?php the_post_thumbnail('index-thumbnail');?></a></figure>
<?php }else{ ?>
<figure class="imagen">
<a href="<?php the_permalink();?>">
<img src="<?php bloginfo('template_url');?>/images/imageDefaul.png" alt="<?php the_title();?>" /></a>
</figure>
<?php }?>
</div>
<div id="division-2">
<div class="textinicio">
<?php _e('¿Desea realizar nuevamente una búsqueda?'); ?>
<?php get_search_form();?>
</div>
</div>
</div>
</div>
</div>
<div class="inferior-cont"></div>
</div>
</div>
<div id="cont-sombra"></div>
</article>
<?php endif; ?>
</section>