Available since: 1.6
searchwp_return_orderby_random
View Parameters »By default SearchWP will return results ordered by relevance (as determined by keyword weight defined by you in the SearchWP settings) but if you would instead like results to be returned at random you may add the following to your theme’s functions.php
:
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 ); |
Parameters
Parameter | Type | Description |
---|---|---|
$random |
Boolean |
Whether the results should be random |
$engine |
String |
The engine in use |