I have used below code to show one category in homepage with fixed number of posts.
<?php $my_query = “cat=3” . $np_pop_cat . “&showposts=5”;
$my_query = new WP_Query($my_query);
while ($my_query->have_posts()) : $my_query->the_post();
?>
But I have problem with next and previous entries for that category in home page.
I want if user clicks on “Next”, then it will shows next 5 post of tha category.
If you are not getting my problem then tell me , I will describe in details.