Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Skills

// Register Custom Taxonomy
function create_taxnononmy_skill() {

	$labels = array(
		'name'                       => _x( 'Skills', 'Taxonomy General Name', 'HRCYRCHRDS' ),
		'singular_name'              => _x( 'Skill', 'Taxonomy Singular Name', 'HRCYRCHRDS' ),
		'menu_name'                  => __( 'Skill', 'HRCYRCHRDS' ),
		'all_items'                  => __( 'All Institutions', 'HRCYRCHRDS' ),
		'parent_item'                => __( 'Parent Skill', 'HRCYRCHRDS' ),
		'parent_item_colon'          => __( 'Parent Skill:', 'HRCYRCHRDS' ),
		'new_item_name'              => __( 'New Skill Name', 'HRCYRCHRDS' ),
		'add_new_item'               => __( 'Add New Skill', 'HRCYRCHRDS' ),
		'edit_item'                  => __( 'Edit Skill', 'HRCYRCHRDS' ),
		'update_item'                => __( 'Update Skill', 'HRCYRCHRDS' ),
		'view_item'                  => __( 'View Skill', 'HRCYRCHRDS' ),
		'separate_items_with_commas' => __( 'Separate skills with commas', 'HRCYRCHRDS' ),
		'add_or_remove_items'        => __( 'Add or remove skills', 'HRCYRCHRDS' ),
		'choose_from_most_used'      => __( 'Choose from the most used', 'HRCYRCHRDS' ),
		'popular_items'              => __( 'Popular Skills', 'HRCYRCHRDS' ),
		'search_items'               => __( 'Search Skills', 'HRCYRCHRDS' ),
		'not_found'                  => __( 'Not Found', 'HRCYRCHRDS' ),
		'no_terms'                   => __( 'No skills', 'HRCYRCHRDS' ),
		'items_list'                 => __( 'Skills list', 'HRCYRCHRDS' ),
		'items_list_navigation'      => __( 'Skills list navigation', 'HRCYRCHRDS' ),
	);
	$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( 'skill', array( 'resume', 'portfolio' ), $args );

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