mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
6 lines
195 B
Text
6 lines
195 B
Text
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
|
|
if ( true !== $query->get( 'facetwp', false ) ) {
|
|
$is_main_query = false;
|
|
}
|
|
return $is_main_query;
|
|
}, 10, 2 );
|