Archive for the ‘WordPress Customization’ Category

How to change the number of categories from the admin panel

Sunday, August 24th, 2008

Edit 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.