@michael
Update from 0.9.0(maybe) to 1.0.
All custom taxonomies disappeared at dashbord.
just as it is, update from 1.0 to 1.0.1.
Still all custom taxonomies disappeared at dashbord.
The “post_type” check had came off, ver 1.0.1 does not recover.
But it was settled checking again the associated post types to each taxonomy.
All CPT UI Taxonomies
—————————–
◆old(Update from 0.9.0 to 1.0 All custom taxonomies disappeared )
add_action( ‘init’, ‘cptui_register_my_taxes’ );
function cptui_register_my_taxes() {
$labels = array(
‘name’ => ‘price’,
‘label’ => ‘price’,
);
$args = array(
‘labels’ => $labels,
‘hierarchical’ => 1,
‘label’ => ‘price’,
‘show_ui’ => 1,
‘query_var’ => 1,
‘rewrite’ => 1,
‘show_admin_column’ => 0,
);
register_taxonomy( ‘price’, , $args );
…
—————————–
◆new(checking again the associated post types)
add_action( ‘init’, ‘cptui_register_my_taxes’ );
function cptui_register_my_taxes() {
$labels = array(
‘name’ => ‘price’,
‘label’ => ‘price’,
);
$args = array(
‘labels’ => $labels,
‘hierarchical’ => true,
‘label’ => ‘price’,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => true,
‘show_admin_column’ => false,
);
register_taxonomy( ‘price’, array( ‘post’ ), $args );
…
—————————–
I knew how long it was dependent on this plug-in.
Thank you great plugin anyway @michael Beckwith