在 "edit post" 管理页面中显示自定义分类法
Showing custom taxonomy in the "edit post" admin page
我使用以下代码创建了自定义分类法。一切都几乎完美,这一个是创建的。它可以在管理侧菜单中找到,也可以在文章列表页面的快速版中找到。
但是,我在 "edit post" 管理页面中没有它(至于类别和标签):
add_action( 'init', 'create_chapitres_taxo', 0 );
function create_chapitres_taxo() {
$labels = array(
'name' => _x( 'Chapitres', 'taxonomy general name' ),
'singular_name' => _x( 'Chapitre', 'taxonomy singular name' ),
'search_items' => __( 'Recherche un chapitre' ),
'popular_items' => __( 'Capitres populaires' ),
'all_items' => __( 'Toutes les catégories' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Editer la chapitre' ),
'update_item' => __( 'Editer la chapitre' ),
'add_new_item' => __( 'Ajouter un chapitre' ),
'new_item_name' => __( 'Ajouter un chapitre' ),
'separate_items_with_commas' => __( 'Séparer les chapitres avec une virgule' ),
'add_or_remove_items' => __( 'Ajouter ou retirer un chapitre' ),
'choose_from_most_used' => __( 'Choisir le chapitre' ),
'menu_name' => __( 'Chapitres' ),
);
register_taxonomy('chapitre','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'chapitres' ),
));
}
但是
我该如何解决这个问题?
您需要在参数中添加 : 'show_in_rest' => true
才能在 Gutemberg 界面中显示。
所以它会变成:
register_taxonomy('chapitre','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_in_rest' => true //add this
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'chapitres' ),
));
注意:如果您需要 Gutemberg 块生成器界面,而不是经典的所见即所得(在 post 编辑页面上),则在声明自定义 post 类型时必须使用相同的参数。
我使用以下代码创建了自定义分类法。一切都几乎完美,这一个是创建的。它可以在管理侧菜单中找到,也可以在文章列表页面的快速版中找到。 但是,我在 "edit post" 管理页面中没有它(至于类别和标签):
add_action( 'init', 'create_chapitres_taxo', 0 );
function create_chapitres_taxo() {
$labels = array(
'name' => _x( 'Chapitres', 'taxonomy general name' ),
'singular_name' => _x( 'Chapitre', 'taxonomy singular name' ),
'search_items' => __( 'Recherche un chapitre' ),
'popular_items' => __( 'Capitres populaires' ),
'all_items' => __( 'Toutes les catégories' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Editer la chapitre' ),
'update_item' => __( 'Editer la chapitre' ),
'add_new_item' => __( 'Ajouter un chapitre' ),
'new_item_name' => __( 'Ajouter un chapitre' ),
'separate_items_with_commas' => __( 'Séparer les chapitres avec une virgule' ),
'add_or_remove_items' => __( 'Ajouter ou retirer un chapitre' ),
'choose_from_most_used' => __( 'Choisir le chapitre' ),
'menu_name' => __( 'Chapitres' ),
);
register_taxonomy('chapitre','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'chapitres' ),
));
}
但是
我该如何解决这个问题?
您需要在参数中添加 : 'show_in_rest' => true
才能在 Gutemberg 界面中显示。
所以它会变成:
register_taxonomy('chapitre','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_in_rest' => true //add this
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'chapitres' ),
));
注意:如果您需要 Gutemberg 块生成器界面,而不是经典的所见即所得(在 post 编辑页面上),则在声明自定义 post 类型时必须使用相同的参数。