Here is the way to Add metabox to custom post type in wordpress ..
1) Add taxonomy to existing or custom post type ..
2) You can add by using this tag… “Quality” is a Name of the taxonomy and “movie” is a post type. customize this as per your’s need.
<?php
register_taxonomy(
'Quality',
'movie',
array(
'hierarchical' => false,
'label' => __( 'Quality', CURRENT_THEME ),
'singular_name' => __( 'Quality', CURRENT_THEME ),
'rewrite' => true,
'query_var' => true
)
);
?>
3) Thanks 🙂
For any help Contact me here..