Add taxonomy to already registered custom post type

I want to add taxonomy to already registered custom post type. Is it possible or I have to delete and create that custom post type again??

Topic custom-taxonomy custom-post-types Wordpress

Category Web


You want to use the register_taxonomy_for_object_type function documented here

add_action('init','fix_my_tax');    
function fix_my_tax(){
    register_taxonomy_for_object_type('taxonomy', 'post_type');
}

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.