Register New Taxonomy or Assign existing Taxonomy to Custom Post Type
// Register New taxonomy for existing CUSTOM POST TYPE add_action(‘init’, ‘wdo_tag_for_cpt_post_type’); function wdo_tag_for_cpt_post_type(){ //register taxonomy for custom post type register_taxonomy( ‘your_taxomony_name’, //taxonomy ‘your_post_type’, //post-type for which registering Taxomony array( ‘hierarchical’ => false, ‘label’ => __( ‘Tags’,’taxonomy general name’), ‘singular_name’ =>…