Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Thomson Adsett News Categories

// Register Custom Taxonomy
function ta_news_cats_tax() {

	$labels = array(
		'name'                       => 'News Categories',
		'singular_name'              => 'News Category',
		'menu_name'                  => 'News Categories',
		'all_items'                  => 'All Items',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'New Item Name',
		'add_new_item'               => 'Add New Item',
		'edit_item'                  => 'Edit Item',
		'update_item'                => 'Update Item',
		'view_item'                  => 'View Item',
		'separate_items_with_commas' => 'Separate items with commas',
		'add_or_remove_items'        => 'Add or remove items',
		'choose_from_most_used'      => 'Choose from the most used',
		'popular_items'              => 'Popular Items',
		'search_items'               => 'Search Items',
		'not_found'                  => 'Not Found',
	);
	$rewrite = array(
		'slug'                       => 'news-category',
		'with_front'                 => true,
		'hierarchical'               => false,
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => false,
		'show_tagcloud'              => false,
		'rewrite'                    => $rewrite,
	);
	register_taxonomy( 'ta_news_cats', array( 'ta_news' ), $args );

}

// Hook into the 'init' action
add_action( 'init', 'ta_news_cats_tax', 0 );