diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php
index c5bad99766..6e1ced10a1 100644
|
a
|
b
|
function use_block_editor_for_post_type( $post_type ) { |
| 2179 | 2179 | function get_block_categories( $post ) { |
| 2180 | 2180 | $default_categories = array( |
| 2181 | 2181 | array( |
| 2182 | | 'slug' => 'common', |
| 2183 | | 'title' => __( 'Common Blocks' ), |
| | 2182 | 'slug' => 'text', |
| | 2183 | 'title' => __( 'Text' ), |
| 2184 | 2184 | 'icon' => null, |
| 2185 | 2185 | ), |
| 2186 | 2186 | array( |
| 2187 | | 'slug' => 'formatting', |
| 2188 | | 'title' => __( 'Formatting' ), |
| | 2187 | 'slug' => 'media', |
| | 2188 | 'title' => __( 'Media' ), |
| 2189 | 2189 | 'icon' => null, |
| 2190 | 2190 | ), |
| 2191 | 2191 | array( |
| 2192 | | 'slug' => 'layout', |
| 2193 | | 'title' => __( 'Layout Elements' ), |
| | 2192 | 'slug' => 'design', |
| | 2193 | 'title' => __( 'Design' ), |
| 2194 | 2194 | 'icon' => null, |
| 2195 | 2195 | ), |
| 2196 | 2196 | array( |