I'd like to be able to change the number of posts shown on Manage > Posts. I've poked around in edit.php and edit-post-rows.php, but can't figure out where it is deciding to display 15 items.
I'd like to be able to change the number of posts shown on Manage > Posts. I've poked around in edit.php and edit-post-rows.php, but can't figure out where it is deciding to display 15 items.
I'd like to know this as well!
This line in wp-admin/includes/post.php
wp("post_type=post&what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby");
Change the 15 to your desired amount... ;-)
Examples..
[5]
wp("post_type=post&what_to_show=posts$post_status_q&posts_per_page=5&order=$order&orderby=$orderby");
[100]
wp("post_type=post&what_to_show=posts$post_status_q&posts_per_page=100&order=$order&orderby=$orderby");
I'm sure the examples were not necessary, but just incase... :)
If this solves the problem, please be sure to select [topic resolved] to the right-handside..
---->
;)
This topic has been closed to new replies.