我试图显示一个自定义分类下的管理菜单项,这只是一个网页i即http://example.com/wp-admin/admin.php?page=bla。
根据WordPress Dev。页面show_in_menu
下register_taxonomy它说:
'some string' -如果是现有的顶级页面,如'tools.php' or 'edit.php?post_type= page ',文章类型将被放置为该子菜单。
这是否意味着分类法不能在除这些之外的任何东西下显示?
PHP
<?php
// hook into the init action and call create_book_taxonomies when it fires
add_action( 'init', 'create_book_taxonomies', 0 );
// create two taxonomies, genres and writers for the post type "book"
function create_book_taxonomies() {
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Genres', 'taxonomy general name' ),
'singular_name' => _x( 'Genre', 'taxonomy singular name' ),
'search_items' => __( 'Search Genres' ),
'all_items' => __( 'All Genres' ),
'parent_item' => __( 'Parent Genre' ),
'parent_item_colon' => __( 'Parent Genre:' ),
'edit_item' => __( 'Edit Genre' ),
'update_item' => __( 'Update Genre' ),
'add_new_item' => __( 'Add New Genre' ),
'new_item_name' => __( 'New Genre Name' ),
'menu_name' => __( 'Genre' ),
);
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_in_menu' => 'bla', // not working | tried admin.php?page=bla as well, also not working
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'genre' ),
);
register_taxonomy( 'genre', array( 'book' ), $args );
}
3条答案
按热度按时间2ekbmq321#
我已经找到了解决这个问题的方法,代码如下:
bmvo0sr52#
在您的分类注册中:
然后,您需要添加子菜单页面:
最后:
希望我把这些都写对了。在分类检查中嵌套任何其他if,并为其他post类型添加相同的。
luaexgnf3#
假设我们的分类slug是
vendor
,我们想把它放在父菜单下的是my_menu
。要授予访问权限,将使用默认的
manage_categories
capability。这需要与在$args
参数中传递的capabilities
数组中提供给register_taxonomy
函数的值匹配。