Product Types
Originally created for Blue Cord Firearms
// Register Custom Taxonomy function chroma_product_type() { $labels = array( 'name' => 'Product Types', 'singular_name' => 'Product Type', 'menu_name' => '', 'all_items' => 'All Product Types', 'parent_item' => 'Parent Product Type', 'parent_item_colon' => 'Parent Product Type:', 'new_item_name' => 'New Product Type Name', 'add_new_item' => 'Add New Product Type', 'edit_item' => 'Edit Product Type', 'update_item' => 'Update Product Type', 'view_item' => 'View Product Type', 'separate_items_with_commas' => '', 'add_or_remove_items' => '', 'choose_from_most_used' => '', 'popular_items' => '', 'search_items' => 'Search Product Types', 'not_found' => 'Not Found', 'no_terms' => '', 'items_list' => '', 'items_list_navigation' => '', ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => false, ); register_taxonomy( 'catalog', array( 'item' ), $args ); } add_action( 'init', 'chroma_product_type', 0 );