diff --git src/wp-admin/includes/screen.php src/wp-admin/includes/screen.php
index 582c659..4e40efc 100644
|
|
function meta_box_prefs( $screen ) { |
78 | 78 | $hidden = get_hidden_meta_boxes($screen); |
79 | 79 | |
80 | 80 | foreach ( array_keys($wp_meta_boxes[$screen->id]) as $context ) { |
81 | | foreach ( array_keys($wp_meta_boxes[$screen->id][$context]) as $priority ) { |
| 81 | foreach ( array('high', 'core', 'default', 'low') as $priority ) { |
| 82 | if ( ! isset( $wp_meta_boxes[$screen->id][$context][$priority] ) ) { |
| 83 | continue; |
| 84 | } |
82 | 85 | foreach ( $wp_meta_boxes[$screen->id][$context][$priority] as $box ) { |
83 | 86 | if ( false == $box || ! $box['title'] ) |
84 | 87 | continue; |