Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active September 26, 2020 15:15
Show Gist options
  • Save djrmom/d52bdc6dec2a1e33197dc8bd0fcd9d13 to your computer and use it in GitHub Desktop.
Save djrmom/d52bdc6dec2a1e33197dc8bd0fcd9d13 to your computer and use it in GitHub Desktop.
facetwp only products
<?php
/* only filter product queries */
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'product_query' != $query->get( 'wc_query' ) ) {
$is_main_query = 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