Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Djelatnosti za Popuste SB

// Register Custom Taxonomy
function djelatnost_taxonomy() {

	$labels = array(
		'name'                       => 'Djelatnosti',
		'singular_name'              => 'Djelatnost',
		'menu_name'                  => 'Djelatnost',
		'all_items'                  => 'Sve Djelatnosti',
		'parent_item'                => 'Glavna Djelatnost',
		'parent_item_colon'          => 'Glavna Djelatnost:',
		'new_item_name'              => 'Ime nove Djelatnosti',
		'add_new_item'               => 'Dodaj novu Djelatnost',
		'edit_item'                  => 'Uredi Djelatnost',
		'update_item'                => 'Ažuriraj Djelatnost',
		'separate_items_with_commas' => 'Odvoji djelatnosti zarezom',
		'search_items'               => 'Pretraži Djelatnosti',
		'add_or_remove_items'        => 'Dodaj ili ukloni djelatnosti',
		'choose_from_most_used'      => 'Izaberi između najkorištenijih djelatnosti',
		'not_found'                  => 'Nije pronađeno',
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => false,
		'show_tagcloud'              => false,
		'rewrite'                    => false,
	);
	register_taxonomy( 'djelatnost', array( 'popusti' ), $args );

}

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