Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

TFECNT-Bundesländer

// Register Custom Taxonomy
function tfecnt_ctax_bundesland() {

	$labels = array(
		'name'                       => _x( 'Bundesländer', 'Taxonomy General Name', 'tfecnt' ),
		'singular_name'              => _x( 'Bundesland', 'Taxonomy Singular Name', 'tfecnt' ),
		'menu_name'                  => __( 'Bundesländer', 'tfecnt' ),
		'all_items'                  => __( 'Alle Bundesländer', 'tfecnt' ),
		'parent_item'                => __( 'Übergeordnetes Bundesland', 'tfecnt' ),
		'parent_item_colon'          => __( 'Übergeordnetes Bundesland:', 'tfecnt' ),
		'new_item_name'              => __( 'Name des neuen Bundeslandes', 'tfecnt' ),
		'add_new_item'               => __( 'Neues Bundesland hinzufügen', 'tfecnt' ),
		'edit_item'                  => __( 'Bundesland bearbeiten', 'tfecnt' ),
		'update_item'                => __( 'Bundesland updaten', 'tfecnt' ),
		'view_item'                  => __( 'Bundesland ansehen', 'tfecnt' ),
		'separate_items_with_commas' => __( 'Trenne Bundesländer mit Kommata', 'tfecnt' ),
		'add_or_remove_items'        => __( 'Füge Bundesländer hinzu oder entferne sie', 'tfecnt' ),
		'choose_from_most_used'      => __( 'Wähle von den meistgewählten', 'tfecnt' ),
		'popular_items'              => __( 'Beliebte Bundesländer', 'tfecnt' ),
		'search_items'               => __( 'Bundesländer suchen', 'tfecnt' ),
		'not_found'                  => __( 'Nichts gefunden', 'tfecnt' ),
		'no_terms'                   => __( 'Keine Einträge', 'tfecnt' ),
		'items_list'                 => __( 'Liste der Bundesländer', 'tfecnt' ),
		'items_list_navigation'      => __( 'Bundesländer Navigation', 'tfecnt' ),
	);
	$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( 'tfecnt_bundesland', array( 'post', 'page' ), $args );

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