Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Taxonomia Creatividad

Nueva taxonomia

// Register Custom Taxonomy
function tax_educación() {

	$labels = array(
		'name'                       => _x( 'Potencial educativo', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Potencial educativo', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Potencial educativo', 'text_domain' ),
		'all_items'                  => __( 'Nuevo prompt', 'text_domain' ),
		'parent_item'                => __( 'Prompt superior', 'text_domain' ),
		'parent_item_colon'          => __( 'Prompt superior', 'text_domain' ),
		'new_item_name'              => __( 'Nuevo prompt', 'text_domain' ),
		'add_new_item'               => __( 'Añadir nuevo prompt', 'text_domain' ),
		'edit_item'                  => __( 'Edit Prompt', 'text_domain' ),
		'update_item'                => __( 'Update Prompt', 'text_domain' ),
		'view_item'                  => __( 'View Prompt', 'text_domain' ),
		'separate_items_with_commas' => __( 'Separar Prompt con comas', 'text_domain' ),
		'add_or_remove_items'        => __( 'Add or remove Prompt', 'text_domain' ),
		'choose_from_most_used'      => __( 'Prompt mas usados', 'text_domain' ),
		'popular_items'              => __( 'Popular Prompts', 'text_domain' ),
		'search_items'               => __( 'Buscar Prompt', 'text_domain' ),
		'not_found'                  => __( 'No encontrado', 'text_domain' ),
		'no_terms'                   => __( 'No hay nada', 'text_domain' ),
		'items_list'                 => __( 'Lista de Prompts', 'text_domain' ),
		'items_list_navigation'      => __( 'Lista de Prompts', 'text_domain' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
	);
	register_taxonomy( 'tax-educacion', array( 'prompts' ), $args );

}
add_action( 'init', 'tax_educación', 0 );