Tell SearchWP to return results in a random order (as opposed to ordered by relevance)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_searchwp_return_orderby_random( $random, $engine ) { | |
// if it's not the default search engine, have results be random | |
if ( 'default' !== $engine ) { | |
$random = true; | |
} | |
return $random; | |
} | |
add_filter( 'searchwp_return_orderby_random', 'my_searchwp_return_orderby_random', 20, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment