Created
February 26, 2018 18:13
-
-
Save djrmom/d347a5b99d74b9e8de7874292d302af2 to your computer and use it in GitHub Desktop.
facetwp listings template
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 | |
| /** add 'facetwp' => true to the listing facetwp template query args **/ | |
| add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) { | |
| if ( 'listings' == FWP()->helper->get_uri() && true !== $query->get( 'facetwp' ) ) { | |
| return 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