In the footer.php
I show all the authors of my blog with the following code:
$args = array(
'meta_key' => 'last_name',
'orderby' => 'meta_value',
'order' => 'ASC'
);
// Create the WP_User_Query object
$wp_user_query = new WP_User_Query( $args );
$wp_user_query->query_orderby = str_replace( 'user_login',
'wp_usermeta.meta_value', $wp_user_query->query_orderby );
// Get the results
$authors = $wp_user_query->get_results();
Is it possible to limit the output to 5 random users? Like posts_per_page => 3
and orderby => rand
?