Changeset 43856
- Timestamp:
- 11/01/2018 04:32:37 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/includes/post.php
r43840 r43856 2097 2097 } 2098 2098 2099 // If a meta box is just here for back compat, don't show it in the block editor. 2100 if ( isset( $meta_box['args']['__back_compat_meta_box'] ) && $meta_box['args']['__back_compat_meta_box'] ) { 2101 continue; 2102 } 2103 2104 // If a meta box doesn't work in the block editor, don't show it in the block editor. 2105 if ( isset( $meta_box['args']['__block_editor_compatible_meta_box'] ) && ! $meta_box['args']['__block_editor_compatible_meta_box'] ) { 2106 continue; 2107 } 2108 2099 2109 $meta_boxes_per_location[ $location ][] = array( 2100 2110 'id' => $meta_box['id'],
Note: See TracChangeset
for help on using the changeset viewer.