Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Zink – Solutions Taxonomy

// Register Custom Taxonomy
function solution_taxonomy() {

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

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