Create Custom Taxonomy

The way 1: You should use this way

Products >> Custom Taxonomy >> Add Taxonomy

Show in Listing: If choose this, this taxonomy will display in listing of product

Add Value (term) for a taxonomy

Click folder icon in Manage taxonomy

The way 2

Support to make Unlimited Custom Taxonomy

  • Go to WooCommerce >> Settings >> Booking & Rental >> Genral >> Total Custom Taxonomy: Insert taxonomy number

  • After inserting the taxonomy number , you will see the taxonomy made in Admin

  • Change Name, Slug of Taxonomy: Open file functions.php in theme or child theme and insert the bellow code

add_filter( 
	'register_taxonomy_ovabrw_1', 
	function ($params){
	 return  array( 'slug' =>  'type', 'name' => esc_html__( 'Taxonomy 1', 'ova-brw' ) );
	} 
);

add_filter( 
	'register_taxonomy_ovabrw_2', 
	function ($params){
	 return  array( 'slug' =>  'brand', 'name' => esc_html__( 'Taxonomy 2', 'ova-brw' ) );
	} 
);
  • After changing, you will see this new taxnomy in admin

  • When you create a new product, you will see these taxonomy

Last updated