Created
February 11, 2021 19:49
-
-
Save mgibbs189/9705b96626cbc7893a49f643c26699aa to your computer and use it in GitHub Desktop.
FacetWP - ignore radio facet selections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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