Limiting number of posts on a page

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.

Leave a Reply