Skip to content

Instantly share code, notes, and snippets.

@brettredvers
Forked from unfulvio/functions.php
Last active January 29, 2018 13:54
Show Gist options
  • Save brettredvers/6d7f32bf476dfda7068830c39088952f to your computer and use it in GitHub Desktop.
Save brettredvers/6d7f32bf476dfda7068830c39088952f to your computer and use it in GitHub Desktop.
FacetWP - WooCommerce Memberships fix
<?php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'wc_user_membership' == $query->get( 'post_type' ) ) {
$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