Select (terms)
See Text field for complete documentation.
$box = register_cuztom_meta_box( $id, $post_type, array(
'fields' => array(
array(
'id' => '_data_term_select',
'type' => 'term_select',
'label' => 'Field Label',
'args' => array(
'taxonomy' => 'category'
),
),
...
)
) );
Updated over 7 years ago