我将wordpress插件从旧编辑器更改为新的块编辑器。一切正常,但我的分类元框不见了。
对于我的插件,我用以下代码创建了一个自定义分类法
<?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\' );
?>
有人知道这个问题吗?