Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
  2. if ( '' !== $query->get( 'facetwp' ) ) {
  3. $is_main_query = (bool) $query->get( 'facetwp' );
  4. }
  5. return $is_main_query;
  6. }, 10, 2 );
Add Comment
Please, Sign In to add comment