Menus: After [35450], use correct IDs in `$initial_meta_boxes`.
Props swissspidy. Fixes #33925. git-svn-id: https://develop.svn.wordpress.org/trunk@35502 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
46778fe2b0
commit
059eb46ddd
|
@ -154,7 +154,7 @@ function wp_initial_nav_menu_meta_boxes() {
|
|||
if ( get_user_option( 'metaboxhidden_nav-menus' ) !== false || ! is_array($wp_meta_boxes) )
|
||||
return;
|
||||
|
||||
$initial_meta_boxes = array( 'add-page', 'add-post', 'add-custom-links', 'add-category' );
|
||||
$initial_meta_boxes = array( 'add-post-type-page', 'add-post-type-post', 'add-custom-links', 'add-category' );
|
||||
$hidden_meta_boxes = array();
|
||||
|
||||
foreach ( array_keys($wp_meta_boxes['nav-menus']) as $context ) {
|
||||
|
|
Loading…
Reference in New Issue