我正在尝试在管理菜单项下显示自定义分类,该菜单项只是一个页面,即http://example.com/wp-admin/admin.php?page=bla.
根据wordpress Dev.在register_taxonomy下show_in_menu的页面,它说如下:
‘some string’ – If an existing top level page such as ‘tools.PHP’ or ‘edit.PHP?post_type=page’, the post type will be placed as a sub menu of that.
<?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 );
}
解决方法:
add_action( 'admin_menu', 'shmeh_menu' );
add_action( 'parent_file', 'menu_highlight' );
function shmeh_menu() {
add_submenu_page( 'bla', 'Shmeh', 'Shmeh', 'manage_options', 'edit-tags.PHP?taxonomy=shmeh');
}
function menu_highlight( $parent_file ) {
global $current_screen;
$taxonomy = $current_screen->taxonomy;
if ( $taxonomy == 'shmeh' ) {
$parent_file = 'bla';
}
return $parent_file;
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。