类别不显示块编辑器WordPress

时间:2020-04-01 作者:Jop

我将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\' );
?>
有人知道这个问题吗?

1 个回复
SO网友:Jop

我解决了这个问题

我忘了打电话了\'show_in_rest\'=> true, 在注册分类代码中。