Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created February 11, 2021 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/9705b96626cbc7893a49f643c26699aa to your computer and use it in GitHub Desktop.
Save mgibbs189/9705b96626cbc7893a49f643c26699aa to your computer and use it in GitHub Desktop.
FacetWP - ignore radio facet selections
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_facet_filter_posts', function( $result, $params ) {
if ( 'categories' == $params['facet']['name'] ) {
return 'continue'; // prevent this facet from being processed
}
return $result;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment