Thing Tax
// Register Custom Taxonomy
function things_taxonomy() {
$labels = array(
'name' => _x( 'Thing Groups', 'Taxonomy General Name', 'wpd_td_wc' ),
'singular_name' => _x( 'Thing Group', 'Taxonomy Singular Name', 'wpd_td_wc' ),
'menu_name' => __( 'Thing Group', 'wpd_td_wc' ),
'all_items' => __( 'All Thing Groups', 'wpd_td_wc' ),
'parent_item' => __( 'Parent Thing Group', 'wpd_td_wc' ),
'parent_item_colon' => __( 'Parent Thing Group:', 'wpd_td_wc' ),
'new_item_name' => __( 'New Thing Group Name', 'wpd_td_wc' ),
'add_new_item' => __( 'Add New Thing Group', 'wpd_td_wc' ),
'edit_item' => __( 'Edit Thing Group', 'wpd_td_wc' ),
'update_item' => __( 'Update Thing Group', 'wpd_td_wc' ),
'view_item' => __( 'View Thing Group', 'wpd_td_wc' ),
'separate_items_with_commas' => __( 'SeparateThing Groups with commas', 'wpd_td_wc' ),
'add_or_remove_items' => __( 'Add or remove Thing Groups', 'wpd_td_wc' ),
'choose_from_most_used' => __( 'Choose from the most used', 'wpd_td_wc' ),
'popular_items' => __( 'Popular Thing Groups', 'wpd_td_wc' ),
'search_items' => __( 'Search Thing Groups', 'wpd_td_wc' ),
'not_found' => __( 'Not Found', 'wpd_td_wc' ),
'no_terms' => __( 'No items', 'wpd_td_wc' ),
'items_list' => __( 'Thing Groups list', 'wpd_td_wc' ),
'items_list_navigation' => __( 'Thing Groups list navigation', 'wpd_td_wc' ),
);
$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( 'thing_tag', array( 'thing' ), $args );
}
add_action( 'init', 'things_taxonomy', 0 );