Guest User

Untitled

a guest
Apr 27th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
  4. if ( 'product_query' == $query->get( 'wc_query' ) ) { // ignore the default WC shop query
  5. $is_main_query = false;
  6. }
  7. return $is_main_query;
  8. }, 10, 2 );
Add Comment
Please, Sign In to add comment