If set show_ui
false
, this hide the taxonomy meta box and admin menu link both, how to hide only meta box?
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => false,
'show_admin_column' => false,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'wheel' ),
);
register_taxonomy( 'wheel', array( 'product' ), $args );