Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save BrElio/1590418b8c6deb45fba586a476a060d3 to your computer and use it in GitHub Desktop.

Select an option

Save BrElio/1590418b8c6deb45fba586a476a060d3 to your computer and use it in GitHub Desktop.
Randomize SearchWP results
<?php
// Randomize SearchWP search results.
add_filter( 'searchwp\query\mods', function( $mods ) {
$mod = new \SearchWP\Mod();
$mod->order_by( 'random', null, 1 );
$mods[] = $mod;
return $mods;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment