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
215 B
Text
6 lines
215 B
Text
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
|
|
if ( 0 === strpos( FWP()->helper->get_uri(), 'author' ) ) {
|
|
$is_main_query = false;
|
|
}
|
|
return $is_main_query;
|
|
}, 10, 2 );
|