add_action('init', function () {

  register_taxonomy('course_type', ['products'], [
    'label'             => 'Тип',
    'public'            => true,
    'show_ui'           => true,
    'show_admin_column' => true,
    'hierarchical'      => true,
    'rewrite'           => ['slug' => 'type'],
    'show_in_rest'      => true,
  ]);

});