I want to show last 5 posts in a wordpress page, but when i use this code it will return the whole posts body, while i have <!--more-->
in my post and I want to show till this part.
here is the code that I am using :
<div>
<ul>
<? query_posts('showposts=5'); ?>
<?php while (have_posts()): the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_contenet(); ?></a>
</li>
<?php endwhile; ?>
</ul>
</div>