Tagged Questions
6
votes
2answers
114 views
alphabetically order role drop-down selection in dashboard
The site I'm working on will have a very large number of unique user roles via a members plugin. Because of that, I'd like to have the Role drop-down selection on the Add New User page to display ...
0
votes
1answer
834 views
Order users by custom user meta
I'm showing a list of users like so:
<ul>
<?php $directors = get_users('role=director');
foreach ($directors as $director) {
$dir_id = $director->ID;
...