http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/
and guess what? Just searching in wp forum with your post title gave me an answer.
I installed it but I couldnt get it work for different categories in different post pages
THIS SOLVED MY PROBLEM:
<?php c2c_get_recent_posts(10, “%post_URL%
“, “$cat”, “date”, “DESC”, 0); ?>
I solved this problem by introducing an if in the loop.
The code should be something like this:
<?php
$cont = 0;
while (have_posts()) : the_post(); ?>
<?php if($cont < 5){ ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php the_content(); ?>
<p class="postmetadata">Posted in <small><?php the_time('d \d\e F \d\e Y'); ?></small> under: <?php the_category(', '); ?>
<?php $cont++; }?>
<?php endwhile;?>
to me it works just fine.
Any comments?