Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Produtos

Produtos-Categorias

// Register Custom Taxonomy
function custom_taxonomy() {

	$labels = array(
		'name'                       => _x( 'Categorias de Produtos', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Categoria de Produto', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Produtos', 'text_domain' ),
		'all_items'                  => __( 'Todos Itens', 'text_domain' ),
		'parent_item'                => __( 'Produto Pai', 'text_domain' ),
		'parent_item_colon'          => __( 'Produto pai:', 'text_domain' ),
		'new_item_name'              => __( 'Adiconar nova categoria', 'text_domain' ),
		'add_new_item'               => __( 'Adicionar Nova Categoria de Produto', 'text_domain' ),
		'edit_item'                  => __( 'Editar', 'text_domain' ),
		'update_item'                => __( 'Atualizar', 'text_domain' ),
		'separate_items_with_commas' => __( 'Separe por virgulas', 'text_domain' ),
		'search_items'               => __( 'Buscar', 'text_domain' ),
		'add_or_remove_items'        => __( 'Adicionar ou Remover', 'text_domain' ),
		'choose_from_most_used'      => __( 'Escolha dos mais Utilizados', 'text_domain' ),
		'not_found'                  => __( 'Não Encontrado', '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( 'produtos', array( 't-produtos' ), $args );

}

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