How to order users by a date in the meta_value array
No, it’s not possible to do this using the get_users function the way that you’ve outlined it, because get_users doesn’t accept a meta_query argument the same way that get_posts does. I see two approaches to get your desired result: either 1) get the users, then sort them afterwards, or 2) use $wpdb to write a … Read more