Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Event Categories

// Register Custom Taxonomy
function event_categories() {

	$labels = array(
		'name'                       => _x( 'Event Categories', 'Taxonomy General Name', 'loveland' ),
		'singular_name'              => _x( 'Event Category', 'Taxonomy Singular Name', 'loveland' ),
		'menu_name'                  => __( 'Event Categories', 'loveland' ),
		'all_items'                  => __( 'All Event Categories', 'loveland' ),
		'parent_item'                => __( 'Parent Event Category', 'loveland' ),
		'parent_item_colon'          => __( 'Parent Event Category:', 'loveland' ),
		'new_item_name'              => __( 'New Event Category Name', 'loveland' ),
		'add_new_item'               => __( 'Add New Event Category', 'loveland' ),
		'edit_item'                  => __( 'Edit Event Category', 'loveland' ),
		'update_item'                => __( 'Update Event Category', 'loveland' ),
		'view_item'                  => __( 'View Event Category', 'loveland' ),
		'separate_items_with_commas' => __( 'Separate event categories with commas', 'loveland' ),
		'add_or_remove_items'        => __( 'Add or event categories', 'loveland' ),
		'choose_from_most_used'      => __( 'Choose from the most used', 'loveland' ),
		'popular_items'              => __( 'Popular Event Categories', 'loveland' ),
		'search_items'               => __( 'Search Event Categories', 'loveland' ),
		'not_found'                  => __( 'Not Found', 'loveland' ),
		'no_terms'                   => __( 'No event categories', 'loveland' ),
		'items_list'                 => __( 'Event Categories list', 'loveland' ),
		'items_list_navigation'      => __( 'Event Categories list navigation', 'loveland' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => false,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
		'show_in_rest'               => true,
	);
	register_taxonomy( 'event_category', array( 'events' ), $args );

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