diff --git src/wp-admin/includes/nav-menu.php src/wp-admin/includes/nav-menu.php
index aa5fa75..5944f93 100644
|
|
function wp_initial_nav_menu_meta_boxes() { |
154 | 154 | if ( get_user_option( 'metaboxhidden_nav-menus' ) !== false || ! is_array($wp_meta_boxes) ) |
155 | 155 | return; |
156 | 156 | |
157 | | $initial_meta_boxes = array( 'add-page', 'add-post', 'add-custom-links', 'add-category' ); |
| 157 | $initial_meta_boxes = array( 'add-post-type-page', 'add-post-type-post', 'add-custom-links', 'add-category' ); |
158 | 158 | $hidden_meta_boxes = array(); |
159 | 159 | |
160 | 160 | foreach ( array_keys($wp_meta_boxes['nav-menus']) as $context ) { |