Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
WordPress Plugin Development

Custom Taxonomies

Group CPTs with custom taxonomies like genres, departments, or topics.

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,
    ]);
});

Leave a reply

Your email address will not be published. Required fields are marked *