I created a wordpress theme, in home page, as i see in another templates for fetch limit numbers of posts in home page. a code like belowe has been developed:
<?php
$featuredPosts->query('showposts=40');
while ($featuredPosts->have_posts() ) : $featuredPosts->the_post(); ?>
<!-- blah blah -->
<?php endwhile;?>
But it shows 35 posts in, how can i fix it? Does it depend on server speed?
Try this
showposts (int) – number of post to show per page. Deprecated as of WP Version 2.1 in favor of ‘posts_per_page’.