Categories does not show Block editor WordPress
Question
I changed my wordpress plugin from the old editor to the new block editor.
Everything works fine but my categories meta box is gone.
For my plugin I created a custom taxonomy with this code
<?php
function create_scooter_tax() {
register_taxonomy(
'scooter_type',
'scooters',
array(
'label' => __( 'Categorieën' ),
'rewrite' => array( 'slug' => 'scooter' ),
'hierarchical' => true,
)
);
}
add_action( 'init', 'create_scooter_tax' );
?>
Is there somebody who knows this issue?
0
block-editor, custom-taxonomy, php
3 years
2020-04-01T04:50:55-05:00
2020-04-01T04:50:55-05:00 0 Answers
84 views
0
Leave an answer