How can I show more than 50 users in the admin page? I need to update all the roles and don't want to flip through all those pages. It would be nice to load 500 at a time or something instead of just 50.
Thank you
How can I show more than 50 users in the admin page? I need to update all the roles and don't want to flip through all those pages. It would be nice to load 500 at a time or something instead of just 50.
Thank you
Found it in includes/user.php
It's not helping. It will only change maybe the first 100 or so roles. Even putting it on 100 it does not change the roles on any page past 1.
Does anyone know what table/field to change the user roles in the database so I can do it using an update query manually?
Thank you
I was looking for the same thing. The best would be to have a variable on the top of every list page asking for how many we want listed!
I modified the file wp-admin/includes/user.php, line 540
changed $user_per_page = 50
to $user_per_page = 1000
And that works for me.
Alan Guggenheim
This topic has been closed to new replies.