Order users by meta
-
I have created some meta fields on users, one specific field being ‘business_name’.
I want to produce a list of all users with the user role ‘business’ ordered by this meta ‘business_name’.
I was ordering by display_name but many businesses have different worded names, hence the new business_name field.
$users = get_users(array( 'role' => 'business', 'orderby' => 'display_name', ));
Can anyone help ordering by this meta?
Also, is it possible to break at each letter, so I can have anchors at the top of the page linking to each initial letter? i.e.
User selects letter
A B C D E F G etc
The page lists the users in alphabetical order
A
A company
Another CompanyB
Brilliant Company
C
Creampie
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Order users by meta’ is closed to new replies.