Es este (la categoría si es correcta, ya lo verifiqué):
Código PHP:
Ver original
<div id="destizquierda"> <?php $events_query = new WP_Query('category_name=destacadaizq&posts_per_page=1'); ?> <?php if(have_posts()) : ?><?php while($events_query->have_posts()) : $events_query->the_post(); ?> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <?php the_excerpt(); ?> <?php endwhile; ?> <?php wp_reset_query(); ?> <?php endif; ?> </div>
Si hago un loop normalito si me funciona, pero este en específico no.