mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
210 B
Text
6 lines
210 B
Text
add_filter( 'generateblocks_query_loop_args', function( $query_args, $attributes ) {
|
|
if (! is_admin() && ! empty( $query_args['s'] ) ) {
|
|
$query_args['relevanssi'] = true;
|
|
}
|
|
return $query_args;
|
|
}, 10, 2 );
|