<?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 are in "include=..."? i.e. user 5 first, user 6 second, user 2 third etc.
