Tagged Questions
1
vote
1answer
242 views
Sort users in get_users() in custom order
<?php
$blogusers = get_users('include=5,6,2,7,12,8');
foreach ($blogusers as $user) {
...
}
?>
Right now these users will sort by first name. How do I sort this the order the numbers ...