Go Back    Forum > Digital Publishing / Web Sites > Website and Server Troubleshooting

Reply
 
LinkBack Thread Tools
  #1  
01-03-2010, 10:39 PM
kpmedia's Avatar
kpmedia kpmedia is offline
Site Staff | Web Hosting, Photo
 
Join Date: Feb 2004
Posts: 4,311
Thanked 374 Times in 341 Posts
I don't know about you, but I can't stand it when I have to click 1,2,3,4,5,6,etc on the bottom, to find the page I want. Showing only 15 pages on the admin menu is a bit limiting on making admin work fast and easy.

Edit the file post.php file located in /wp-admin/includes folder and replacing number 15 with something higher, like 50, 75 or 100. I wouldn't do too many, but something like 65 would quadruple the amount per page (and reduce number of pages of pages by 75%),

In WordPress 2.8 (maybe other versions too, earlier and later), the line of code should look like this after you changed 15 to 65.
Code:
	$posts_per_page = get_user_option('edit_per_page');
	if ( empty($posts_per_page) )
		$posts_per_page = 65;
	$posts_per_page = apply_filters('edit_posts_per_page', $posts_per_page);

	wp("post_type=post&$post_status_q&posts_per_page=65&order=$order&orderby=$orderby");

	return array($post_stati, $avail_post_stati);
Saw this at http://wordpress.org/support/topic/228285 ... although what was written there was a bit messy and not completely correct.

---- and it doesn't work on one of my sites, either.
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Ads / Sponsors
 
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Wordpress wp-admin login loop [SOLVED] admin Website and Server Troubleshooting 0 10-08-2009 02:20 PM
List of Useful WordPress 3.x plug-ins [research] admin Website and Server Troubleshooting 1 08-11-2009 12:50 AM
Why are all the latest posts by admin? admin General Discussion 0 12-25-2008 12:32 PM
Who is lordsmurf and who does he work for? lordsmurf General Discussion 0 01-24-2004 12:18 AM




 
All times are GMT -5. The time now is 04:22 AM