I found a way to display WordPress articles with the following code.
<ul>
<?php
$recent = new WP_Query("cat=3&showposts=5");
while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
The complete tutorial is here . I already found a script for Blogger, but it does not work in WordPress.
In the tutorial also has that other code that is for shows the image of the post.
<a href=""><img src="/timthumb.php?src=&h=60&w=60&zc=1" title="Clique para ler: " alt="" class="recent-posts-thumb" width="60px" height="60px" />
The goal is to display a page with articles from a particular article: Category or tag. So you can better organize them.
The name of this code would be a hack Read more . What I would like to do is show specific articles with a short summary of the post on a page.