mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
232 B
Text
6 lines
232 B
Text
function rlv_flatsome_search_function( $query, $args, $defaults ) {
|
|
$args['relevanssi'] = true;
|
|
return get_posts( $args );
|
|
}
|
|
|
|
add_filter( 'flatsome_ajax_search_function', function() { return 'rlv_flatsome_search_function'; } );
|