Created
September 14, 2020 13:45
-
-
Save djrmom/207d7b49855e9cc44217814f722988ba to your computer and use it in GitHub Desktop.
facetwp always ignore archive query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** always ignore archive query as main query for facet **/ | |
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) { | |
if ( $query->is_archive() && $query->is_main_query() ) { | |
$is_main_query = false; | |
} | |
return $is_main_query; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment