How can I show more than 15 themes at a time in the admin menu?

I have a lot of themes in my test wordpress site. I get a little frustrated that I can’t show more than 15 at a time.

Picture.png http://img820.imageshack.us/img820/5982/picturef.png

In pages and posts you can click “screen options” to choose the number, but it looks like “Themes” has no such option.

Picture-1.jpg http://img853.imageshack.us/img853/9582/picture1bbg.jpg

Is there another way to increase the number?

1 Answer
1

It’s hardcoded into the WP_Themes_List_Table class that’s responsible on Line 50.

$per_page = 15;

So in short, you can’t without modifying a core file.

Link to source.

Leave a Comment