Código PHP:
Ver original
<div id="destizquierda"> <?php query_posts('cat=3&posts_per_page=1'); ?> <?php if(have_posts()) : ?><?php while (have_posts()) : the_post(); $wp_query->is_archive = true; ?> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <p class="leer"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">Leer más</a></p> <?php endwhile; ?> <?php wp_reset_query(); ?> <?php endif; ?> </div>
Necesito usar query_posts porque tengo varios loops de distintas categorías en una misma página (es un periódico en línea).
Gracias