Archive for the 'Wordpress Development' Category

Limit number of posts

Friday, April 6th, 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.