Maneira muito fácil de mostrar seus posts recentes no wordpress sem precisar de plugins.
Adicione em seu tema wordpress no arquivo sidebar.php ou whatever.
<?php query_posts('showposts=10'); ?> <li> <h2>Posts Recentes</h2> <ul> <?php while (have_posts()) : the_post(); ?> <li><a href='<?php the_permalink() ?>'><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> </li>
E tem gente que usa plugins pra isso 😛 is so easy.