Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active August 24, 2020 17:44
Show Gist options
  • Select an option

  • Save djrmom/7328ebb3d388089087fff483f2fc5b29 to your computer and use it in GitHub Desktop.

Select an option

Save djrmom/7328ebb3d388089087fff483f2fc5b29 to your computer and use it in GitHub Desktop.
facetwp index category and its children
<?php
/** reindex after adding filter code */
add_filter( 'facetwp_index_row', function( $params, $class ) {
if ( 'label_fr' == $params['facet_name'] ) { // change if needed
if ( 183 != $params['term_id'] && 183 != $params['parent_id'] ) ) {
$params['facet_value'] = '';
}
}
return $params;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment