Hello, you know that by default wordpress shows 10 post in the index page, i need to show 20, where can i modify this? Thanks!
+1
A:
You would adjust your theme's Loop to look as follows:
<?php
query_posts($query_string.'&posts_per_page=20');
while(have_posts()) { the_post();
<!-- put your loop code here -->
}
?>
This would limit to 20 posts instead of 10.
mozami
2010-09-29 11:54:55
+1
A:
Hi,
This is very easy to do from your WordPress admin panel.
Go to Settings -> Reading -> and then simply change the number in the box next to the question "Blog pages show at most".
Let me know if that answers your question or not!
Libby
2010-09-30 22:23:38