<?php
/** enable hierarchy on an existing taxonomy **/
add_filter( 'register_taxonomy_args', function( $args, $taxonomy ) {
if ( 'pa_color' == $taxonomy ) {
$args['hierarchical'] = true;
}
return $args;
}, 10, 2 );
Code snippets for FacetWP
<?php
/** enable hierarchy on an existing taxonomy **/
add_filter( 'register_taxonomy_args', function( $args, $taxonomy ) {
if ( 'pa_color' == $taxonomy ) {
$args['hierarchical'] = true;
}
return $args;
}, 10, 2 );