/**
* Theme Name: Extice Child
* Description: This is a child theme of Extice, generated by Merlin WP.
* Author: <a href="https://wpopal.com/">Opalthemes</a>
* Template: fze
* Version: 1.1.1
*/

function register_project_categories_taxonomy() {

    $labels = array(
        'name'          => 'Project Categories',
        'singular_name' => 'Project Category',
        'menu_name'     => 'Project Categories',
    );

    $args = array(
        'hierarchical'      => true, // behaves like Categories
        'labels'            => $labels,
        'show_ui'           => true,
        'show_admin_column' => true,
        'show_in_rest'      => true,
        'rewrite'           => array('slug' => 'project-category'),
    );

    register_taxonomy('project_category', array('extice_project'), $args);

}
add_action('init', 'register_project_categories_taxonomy', 20);