Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created September 10, 2020 21:54
Show Gist options
  • Save djrmom/f61b54f852cbbff36240fdc59825a6f2 to your computer and use it in GitHub Desktop.
Save djrmom/f61b54f852cbbff36240fdc59825a6f2 to your computer and use it in GitHub Desktop.
facetwp force template query
<?php
/** add 'facetwp' => true to *ALL* facetwp template query args **/
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( true !== $query->get( 'facetwp', false ) ) {
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