I haven’t used a plugin, but have added this snippet to my functions.php…
add_action( ‘init’, ‘custom_taxonomy_Color’ );
function custom_taxonomy_Color() {
$labels = array(
‘name’ => ‘Colors’,
‘singular_name’ => ‘Color’,
‘menu_name’ => ‘Color’,
‘all_items’ => ‘All Colors’,
‘parent_item’ => ‘Parent Color’,
‘parent_item_colon’ => ‘Parent Color:’,
‘new_item_name’ => ‘New Color Name’,
‘add_new_item’ => ‘Add New Color’,
‘edit_item’ => ‘Edit Color’,
‘update_item’ => ‘Update Color’,
‘separate_items_with_commas’ => ‘Separate Color with commas’,
‘search_items’ => ‘Search Colors’,
‘add_or_remove_items’ => ‘Add or remove Colors’,
‘choose_from_most_used’ => ‘Choose from the most used Colors’,
);
$args = array(
‘labels’ => $labels,
‘hierarchical’ => true,
‘public’ => true,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘show_in_nav_menus’ => true,
‘show_tagcloud’ => true,
);
register_taxonomy( ‘color’, ‘product’, $args );
register_taxonomy_for_object_type( ‘color’, ‘product’ );
}
Wondering how to turn this into a filter widget in my shop! Thanks