Snippet pour afficher les 3 derniers articles là où vous voulez dans WordPress, dans la sidebar par exemple :
<?php
$recentPosts = new WP_Query();
$recentPosts->query(‘showposts=3’);
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a><br /><?php the_excerpt(); ?></li>
<?php endwhile; ?>