mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
16 lines
402 B
Text
16 lines
402 B
Text
add_filter( 'alm_modify_query_args', function( $args ) {
|
|
global $rlv_is_offset_query;
|
|
$args['relevanssi'] = true;
|
|
if ( $args['offset'] ) {
|
|
$rlv_is_offset_query = true;
|
|
}
|
|
return $args;
|
|
} );
|
|
|
|
add_filter( 'relevanssi_ok_to_log', function( $ok, $query ) {
|
|
global $rlv_is_offset_query;
|
|
if ( $rlv_is_offset_query ) {
|
|
$ok = false;
|
|
}
|
|
return $ok;
|
|
}, 10, 2 );
|