Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created February 26, 2018 18:13
Show Gist options
  • Select an option

  • Save djrmom/d347a5b99d74b9e8de7874292d302af2 to your computer and use it in GitHub Desktop.

Select an option

Save djrmom/d347a5b99d74b9e8de7874292d302af2 to your computer and use it in GitHub Desktop.
facetwp listings template
<?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