miércoles, 1 de abril de 2009
Mostrar artículos recientes
El siguiente código muestra los últimos 5 artículos del blog mostrados en una lista:
<?php query_posts('showposts=5'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>