Thursday, September 23, 2010

WordPress Codex: Limit Query Posts Per Page

//The Query
query_posts('posts_per_page=5');

//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
..
endwhile; else:
..
endif;

//Reset Query
wp_reset_query();
?>