WordPress Plugin Development Series (33/95). Prefer one article? Read the complete WordPress plugin development tutorial.
Short description
Taxonomies can be hierarchical (like categories) or flat (like tags).
Register taxonomy
add_action('init', function () {
register_taxonomy('genre', 'book', [
'label' => 'Genres',
'hierarchical' => true,
'show_in_rest' => true,
'public' => true,
]);
});