How to change the number of categories from the admin panel
Sunday, August 24th, 2008Edit the file called “wp-admin/categories.php”
Look for the code below (should start around line 139)
$pagenum = absint( $_GET[’pagenum’] );
if ( empty($pagenum) )
$pagenum = 1;
if( !$catsperpage || $catsperpage < 0 )
$catsperpage = 20;
Change $catsperpage from the last row to whatever you wish.