Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tax Tags Useful Plugins

if ( ! function_exists( 'nwb_register_tax_uplug_tags' ) ) {

// Register Custom Taxonomy
function nwb_register_tax_uplug_tags() {

	$labels = array(
		'name'                       => 'Useful Plugin Tags',
		'singular_name'              => 'Useful Plugin Tag',
		'menu_name'                  => 'Useful Plugin Tags',
		'all_items'                  => 'All Useful Plugin Tags',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'New Useful Plugin Tag Name',
		'add_new_item'               => 'Add New Useful Plugin Tag',
		'edit_item'                  => 'Edit Useful Plugin Tag',
		'update_item'                => 'Update Useful Plugin Tag',
		'view_item'                  => 'View Useful Plugin Tag',
		'separate_items_with_commas' => 'Separate Useful Plugin Tagss with commas',
		'add_or_remove_items'        => 'Add or remove Useful Plugin Tags',
		'choose_from_most_used'      => 'Choose from the most used',
		'popular_items'              => 'Popular Useful Plugin Tags',
		'search_items'               => 'Search Useful Plugin Tags',
		'not_found'                  => 'Not Found',
		'no_terms'                   => 'No Useful Plugin Tags',
		'items_list'                 => 'Useful Plugin Tags list',
		'items_list_navigation'      => 'Useful Plugin Tags list navigation',
	);
	$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( 'uplug_tags', array( 'uplug' ), $args );

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

}