solid-pixel
1/6/2017 - 2:34 PM

Register Taxonomy exclusive to a specific custom post type

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