Wordpress display only 15 posts in the “Manage” section by default. As a wordpress blogger or adminstrator, this can sometimes be quite limiting. Unfortuntely, there isn’t any known variables or parameters that you can pass through the URL to tell this section to return you with the number of posts that you would like to see. However, there’s a solution.

Digging through the code got me to the solution.

1. Open up /wp-admin/includes/post.php.

2. Search for the function wp_edit_posts_query()

3. At the end of this function, you will probably find this line of code:
wp(”post_type=post&what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby”);

4. Aha, posts_per_page! That’s what you will need to change. Change 15 to the number of posts you’ll want to see in the Manage section. I usually set mine to 50 anyway.

That’s about it. Too bad the Wordpress team didn’t even define a variable for that. It was simply hardcoded at 15!