Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 11, 2021 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jchristopher/5768ed53d30bae8f74dca8c470adb8af to your computer and use it in GitHub Desktop.
Save jchristopher/5768ed53d30bae8f74dca8c470adb8af 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