Skip to content

Instantly share code, notes, and snippets.

@siteoptimo
Last active November 8, 2022 19:34
Show Gist options
  • Save siteoptimo/9049115 to your computer and use it in GitHub Desktop.
Save siteoptimo/9049115 to your computer and use it in GitHub Desktop.
This will allow to order a wordpress user query by random.
<?php
// put this in your functions.php
add_filter('pre_user_query', function(&$query) {
if($query->query_vars["orderby"] == 'rand') {
$query->query_orderby = 'ORDER by RAND()';
}
});
// Query will look like this:
$args = array('orderby' => 'rand', 'number' => 5);
$users = WP_User_Query($args);
@Gori4ka
Copy link

Gori4ka commented Nov 29, 2018

Hi Guys, Thanks

@SeanTOSCD
Copy link

Thank you much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment