gareths tool tags (test)
if ( ! function_exists( 'gareths_tool_user_tags' ) ) {
// Register Custom Taxonomy
function gareths_tool_user_tags() {
$labels = array(
'name' => 'Users',
'singular_name' => 'Users',
'menu_name' => 'Users',
'all_items' => 'All Users',
'parent_item' => 'Parent User',
'parent_item_colon' => 'Parent Item:',
'new_item_name' => 'New User',
'add_new_item' => 'Add New User',
'edit_item' => 'Edit User',
'update_item' => 'Update User',
'view_item' => 'View Item',
'separate_items_with_commas' => 'Separate items with commas',
'add_or_remove_items' => 'Add or remove items',
'choose_from_most_used' => 'Choose from the most used',
'popular_items' => 'Popular Items',
'search_items' => 'Search Items',
'not_found' => 'Not Found',
'no_terms' => 'No items',
'items_list' => 'Items list',
'items_list_navigation' => 'Items 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,
'show_in_rest' => true,
);
register_taxonomy( 'user', array( 'tools' ), $args );
}
add_action( 'init', 'gareths_tool_user_tags', 0 );
}