Select the submenu item for post-new.php when using show_in_menu = 'some-parent-file' for post types. Continue to select the post-new.php submenu item if it has been separately added with add_submenu_page(). fixes #19125.
git-svn-id: https://develop.svn.wordpress.org/trunk@19425 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a742f2ac47
commit
10f012451a
@ -22,11 +22,14 @@ if ( 'post' == $post_type ) {
|
||||
$parent_file = 'edit.php';
|
||||
$submenu_file = 'post-new.php';
|
||||
} else {
|
||||
if ( isset( $post_type_object ) && $post_type_object->show_in_menu && $post_type_object->show_in_menu !== true )
|
||||
$parent_file = $post_type_object->show_in_menu;
|
||||
else
|
||||
$parent_file = "edit.php?post_type=$post_type";
|
||||
$submenu_file = "post-new.php?post_type=$post_type";
|
||||
if ( isset( $post_type_object ) && $post_type_object->show_in_menu && $post_type_object->show_in_menu !== true ) {
|
||||
$parent_file = $post_type_object->show_in_menu;
|
||||
if ( ! isset( $_registered_pages[ get_plugin_page_hookname( "post-new.php?post_type=$post_type", $post_type_object->show_in_menu ) ] ) )
|
||||
$submenu_file = $parent_file;
|
||||
} else {
|
||||
$parent_file = "edit.php?post_type=$post_type";
|
||||
}
|
||||
}
|
||||
|
||||
$title = $post_type_object->labels->add_new_item;
|
||||
|
Loading…
Reference in New Issue
Block a user