Changeset 43792 for branches/5.0
- Timestamp:
- 10/22/2018 09:26:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/includes/post.php
r43778 r43792 2087 2087 $meta_boxes = (array) $wp_meta_boxes[ $current_screen->id ][ $location ][ $priority ]; 2088 2088 foreach ( $meta_boxes as $meta_box ) { 2089 if ( ! empty( $meta_box['title'] ) ) { 2090 $meta_boxes_per_location[ $location ][] = array( 2091 'id' => $meta_box['id'], 2092 'title' => $meta_box['title'], 2093 ); 2089 if ( false == $meta_box || ! $meta_box['title'] ) { 2090 continue; 2094 2091 } 2092 2093 $meta_boxes_per_location[ $location ][] = array( 2094 'id' => $meta_box['id'], 2095 'title' => $meta_box['title'], 2096 ); 2095 2097 } 2096 2098 }
Note: See TracChangeset
for help on using the changeset viewer.