Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Show Taxonomy

// Register Custom Taxonomy
function custom_taxonomy() {

	$labels = array(
		'name'                       => _x( 'Shows', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Show', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Shows', 'text_domain' ),
		'all_items'                  => __( 'All Shows', 'text_domain' ),
		'parent_item'                => __( 'Parent Show', 'text_domain' ),
		'parent_item_colon'          => __( 'Parent Show:', 'text_domain' ),
		'new_item_name'              => __( 'New Show Name', 'text_domain' ),
		'add_new_item'               => __( 'New Show Item', 'text_domain' ),
		'edit_item'                  => __( 'Edit Show Item', 'text_domain' ),
		'update_item'                => __( 'Update Show Item', 'text_domain' ),
		'view_item'                  => __( 'Show Show Item', 'text_domain' ),
		'separate_items_with_commas' => __( 'Separate shows with commas', 'text_domain' ),
		'add_or_remove_items'        => __( 'Add or remove Shows', 'text_domain' ),
		'choose_from_most_used'      => __( 'Choose from the most used SHows', 'text_domain' ),
		'popular_items'              => __( 'Popular Shows', 'text_domain' ),
		'search_items'               => __( 'Search Shows', 'text_domain' ),
		'not_found'                  => __( 'No Show Found', 'text_domain' ),
		'no_terms'                   => __( 'No Shows', 'text_domain' ),
		'items_list'                 => __( 'Show List', 'text_domain' ),
		'items_list_navigation'      => __( 'Show List Navigation', 'text_domain' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => false,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
	);
	register_taxonomy( 'show', array( 'shows' ), $args );

}
add_action( 'init', 'custom_taxonomy', 0 );