Archive for the 'Warwell Wordpress Design Forum' Category

Limiting number of posts on a page

Wednesday, March 28th, 2007

To limit the number of posts on a certain page, follow these instructions

In your template file’s index.php, right above the line "<?php if(have_post) ?> ", insert this code:

<?php if(is_home())
query_posts("showposts=5"); ?>

where showposts equals the number of pages you wish to post.