how to get authors details and author page permalink randomly. I have checked the new get_users() function for wordpress which is returning the author but i can not sorting them randomly.
here is the site i am using the code: http://citystir.com
Any help?
Solution: Thanks to theomega i have solved the isse. Here is the code just for community sharing:
$args = array('role' => 'author');
$authors = get_users($args);
shuffle($authors);
$i = 0;
foreach ($authors as $author):
if($i == 4) break;
//do stuff
$i++;
endforeach;
Did not set the limit on the $args because i need the shuffle in all users. Hope it will help someone out there, in the wild. 😀 Thanks!
Try
Using the PHP Shuffle-Function.
We can use the get_users() to get a list of authors, users with a specific role, user with specific meta, etc. The function returns users which can be ordered by ID, login, nicename, email, url, registered, display_name, post_count, or meta_value. But there is no random option such as what get_posts() function provides to shows posts randomly.
Since the get_users() function uses WP_User_Query class, there is an action hook pre_user_query we can use to modify the class variable. The idea is using our own ârandâ order by parameter. If we put ârandâ to the orderby parameter, âuser_loginâ will be used instead. In this case, we need to replace it with RAND() to result users randomly. In this example below, we I ârandâ and you can use your own order by name.
The WP_User_Query contains order by query and the our arguments. Now, we have a new order by parameter to WordPress.
Reference: http://www.codecheese.com/2014/05/order-wordpress-users-random/