Have menu_name work with show_in_menu = submenu. fixes #14832.
git-svn-id: http://svn.automattic.com/wordpress/trunk@17197 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
48c84b91de
commit
e32a14de12
|
@ -1200,7 +1200,7 @@ function _add_post_type_submenus() {
|
|||
// Submenus only.
|
||||
if ( ! $ptype_obj->show_in_menu || $ptype_obj->show_in_menu === true )
|
||||
continue;
|
||||
add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels->name, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" );
|
||||
add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" );
|
||||
}
|
||||
}
|
||||
add_action( 'admin_menu', '_add_post_type_submenus' );
|
||||
|
|
Loading…
Reference in New Issue