Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save themepaint/b3755d6c8d6070dac40643c6ce8210e9 to your computer and use it in GitHub Desktop.
Save themepaint/b3755d6c8d6070dac40643c6ce8210e9 to your computer and use it in GitHub Desktop.
Register Custom Taxonomy Woocommerce Products
// Register Custom Taxonomy
function ess_custom_taxonomy_Item() {
$labels = array(
'name' => 'Brands',
'singular_name' => 'Brand',
'menu_name' => 'Brands',
'all_items' => 'All Brands',
'parent_item' => 'Parent Brand',
'parent_item_colon' => 'Parent Brand:',
'new_item_name' => 'New Brand Name',
'add_new_item' => 'Add New Brand',
'edit_item' => 'Edit Brand',
'update_item' => 'Update Brand',
'separate_items_with_commas' => 'Separate Brand with commas',
'search_items' => 'Search Brands',
'add_or_remove_items' => 'Add or remove Brands',
'choose_from_most_used' => 'Choose from the most used Brands',
);
$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( 'item', 'product', $args );
}
add_action( 'init', 'ess_custom_taxonomy_item', 0 );
@isandipanmondal
Copy link

Thank you very much, You save my time.

@esreal12
Copy link

esreal12 commented Mar 6, 2020

Thank you so much!!! More time saved here.

@MarceloGlez
Copy link

Thank you very much, I'm a beginner in all of this. Could you tell me how to post it in the product's page?

@tahafarooqui
Copy link

It is not showing in woocommerce REST API. Is it possible to attach taxonomy in products rest api.

@amit834
Copy link

amit834 commented Nov 2, 2020

how to fetch taxonomy in frontend

@gudh
Copy link

gudh commented Jan 14, 2021

Thanks!

and a small update:

register_taxonomy( 'brand', 'product', $args );

@affu44
Copy link

affu44 commented Apr 8, 2021

is this shows on filter like category?

@bwcr
Copy link

bwcr commented Oct 27, 2021

is this shows on filter like category?

Me too! I was wondering if its possible to show as a filter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment