Register Taxonomy exclusive to a specific custom post type
add_action( 'init', 'build_taxonomies', 0 );
function build_taxonomies() {
register_taxonomy(
'course_type', //taxonomy slug
'course', // custom post type slug
array(
'hierarchical' => true, //shows as category, set false to show as tags
'label' => 'Course Type', //taxonomy label
'query_var' => true,
'rewrite' => true
)
);
}