mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 08:11:52 +01:00
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: http://svn.automattic.com/wordpress/trunk@19425 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d170df731a
commit
974108d57c
@ -22,11 +22,14 @@ if ( 'post' == $post_type ) {
|
|||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
$submenu_file = 'post-new.php';
|
$submenu_file = 'post-new.php';
|
||||||
} else {
|
} 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";
|
$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;
|
$title = $post_type_object->labels->add_new_item;
|
||||||
|
Loading…
Reference in New Issue
Block a user