Cita:
Iniciado por ArturoGallegos Solo retira el IF y los elementos acomodalos como te plazca, es simple HTML no creo que tengas problemas.
Quedaria asi?
Código PHP:
<?php
$query = new WP_query('order=DESC&posts_per_page=3'); ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <li>
<div style="height:320px;overflow:visible;"><?php the_post_thumbnail(array(630,630)); ?></div>
<div class="slider-description">
<span style="margin:10px 0;"><b> <?php the_title(); ?> </b></span>
<br />
<?php extracto(200); ?>
</div>
</li> </a>
<?php endwhile; else : ?>
<div class="errorbox">
<?php _e('Sorry, no posts matched your criteria.', 'inove'); ?>
</div>