Hi,
I have an index page that has a banner that displays "Featured Stories", and then beneath the banner is all posts of the category "Stories."
I am trying to make it so that beneath the banner, only 5 or so posts of the category "Stories" are displayed and then paginated navigation beneath for further back "Stories."
I tried using posts_nav_link() in my index template, but because of the fact that I use query_posts(array('category_name'=>'Story',posts_per_page=>4));, no matter what page you navigate to it always displays the most recent 4 stories!!
Is there a way to do this??