Try this code, but replace METAKEY to the key-name of your metadata.
<?php
function cmp( $a, $b )
{
if( $a->METAKEY == $b->METAKEY ){ return 0 ; }
return ($a->METAKEY < $b->METAKEY ) ? -1 : 1;
}
?>
<ul>
<?php
$args = array(
'role' => 'author' ,
'meta_key' => 'METAKEY',
'number' => 5,
);
$blogusers = get_users($args);
usort($blogusers ,'cmp');
foreach ($blogusers as $user) {
echo '<li>' . $user->display_name . '</li>';
echo get_user_meta($user->ID, 'METAKEY', true);
}
?>
</ul>
Related Posts:
- How to get all multi-select user meta values and add them to an array?
- Show newly added posts since last user login time /date
- Custom search form to display users only
- How do I make a variable available inside partials?
- Enabling users to control custom loop’s query
- How to get user ID’s from multiple usernames?
- Query users and count totals based on meta values
- Loop random posts and display odd and even based on two alternating meta values?
- Show a list of user posts in the user admin page
- Get Sticky User in user loop based on user role
- Display all existing members
- Combine Query and Select Database to create directory loop
- Users as team members through a loop in elementor
- How to display Yoast SEO meta description in archive template for each post instead of the_excerpt()? [closed]
- How to get Author ID outside the loop
- remove tags from the_content
- the_title() shows title of the first post instead of the page title?
- Why do themes rely on “The Loop”?
- How to place comments_template(); outside the loop?
- Endless loop with wp_insert_post and wp_update_post
- Hook into the loop via a plugin, and output something after every X post?
- Two custom loops, pagination, offset
- What exactly defines a Main Loop and a Secondary Loop?
- Access to Media Library
- Getting two wp_link_pages output
- post loop causes wp_users and wp_usermeta DB queries for each users
- Ajax loop refresh on click
- Run The Loop over array of post objects
- the_excerpt(), get_the_excerpt() and the_content() all killing “the Loop”
- Enable infinite scroll on single.php [closed]
- Is get_posts() more efficient than The Loop?
- loop through all posts memory error
- How to loop through ALL pages?
- Does get_template_part pull data once in a loop?
- How to retrieve “sticky” post outside the “loop”?
- Using get_the_excerpt() Before The Loop
- code suddenly appearing from my tempate second loop
- Get post/page data outside the loop
- How to go about combining dropdowns / filter queries?
- woocommerce get_price_html not pulling in correct price
- Trouble Formatting DateTime
- Order archive results by post id in custom taxonomy template
- How to fix pagination for custom loops?
- pre_get_posts for two loops on same page
- How to display posts by vote count and if no value continue with latest posts with no votes?
- Sort results by groups of numbers and letters
- Modify the main loop to display current month / year
- Show all posts using the template page and the loop?
- ‘Auto Draft’ Post showing in wordpress loop
- How do I display an image before the first post of the loop when I’m using get_template_part?
- Why does `inclusive` not work in this wordpress loop?
- Multiple get_posts() queries on one page
- Custom loop not working
- Loop inside query
- In Custom page – next_posts_link Not working while previous_posts_link is working
- Escape current post from loop
- Why isn’t my multiple loops working?
- How can I display other user avatars on an author profile page?
- something strange is happening to my code
- How do I display the latest posts from three different categories?
- facebook like, tweet and google+1 buttons inside the loop on home, archive and search pages and missing facebook like buttons
- Loop Offset for tag based “Related Posts”
- How do I put my frontpage featured image in a page template for home.php?
- Randomly display post based on meta value. (Kind of Priority/Weight)
- How to print redux gallery feilds id? [closed]
- Why the first with flexslider appears as blank on my code?
- Rendering pages
- How can have a conditional template tag based on the main loop within a secondary loop with new WP_Query(), using get_template_part()
- WP_Query is only looping home page, not pages
- How to filter posts by category INSIDE the loop
- static page with multiple loops breaks post pagination
- new custom theme – posts displaying on top of one another
- Why would a completely normal loop give offset errors and maximum execution time errors?
- Avoid WP_Query’s duplicate posts with taxonomies
- How can I change how my tag pages display?
- Properly loop through and paginate page on each function call
- WordPress finding posts on 404 page
- Get a Post Loop based on Logged in User information into a Shortcode
- Submit form for loop of products of the term with AJAX
- Last post in loop when even
- Customizer settings using “for” loop
- Repeat code, change variable?
- Foreach loop inside foreach loop?
- Ajax category pagination problem
- Unable to login + Redirect loop on mobile
- Variable not working in sidebar loop
- My custom query not detecting the correct category
- 2 loops in blog homepage
- In Loop Output Place Custom Field Content In Between Paragraphs
- wordpress showing all posts instead of date range
- Help with add_filter(‘the_content’, ‘some_function’) and multiple matches
- Single Loop With Dual Content Area
- ACF loops false value with repeater and checkbox
- How to do query_posts on tags pages
- the_content() “crashes” for single pages
- How to toggle a div element between two images when click two submit buttons in a wordpress loop?
- Best hook for a function which adds shortcodes to the system?
- Same posts within a paginated page
- Adding vkontakte social “like” button to posts results in multiple buttons on first post only
- Alternatives to archive.php