Editor: Revert [48119].
This commit caused the majority of blocks in the block editor to no longer register as they reference the old category names. See #50278. git-svn-id: https://develop.svn.wordpress.org/trunk@48130 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5acb95916f
commit
65dfce752e
@ -2179,33 +2179,33 @@ function use_block_editor_for_post_type( $post_type ) {
|
||||
function get_block_categories( $post ) {
|
||||
$default_categories = array(
|
||||
array(
|
||||
'slug' => 'text',
|
||||
'title' => _x( 'Text', 'block category' ),
|
||||
'slug' => 'common',
|
||||
'title' => __( 'Common Blocks' ),
|
||||
'icon' => null,
|
||||
),
|
||||
array(
|
||||
'slug' => 'media',
|
||||
'title' => _x( 'Media', 'block category' ),
|
||||
'slug' => 'formatting',
|
||||
'title' => __( 'Formatting' ),
|
||||
'icon' => null,
|
||||
),
|
||||
array(
|
||||
'slug' => 'design',
|
||||
'title' => _x( 'Design', 'block category' ),
|
||||
'slug' => 'layout',
|
||||
'title' => __( 'Layout Elements' ),
|
||||
'icon' => null,
|
||||
),
|
||||
array(
|
||||
'slug' => 'widgets',
|
||||
'title' => _x( 'Widgets', 'block category' ),
|
||||
'title' => __( 'Widgets' ),
|
||||
'icon' => null,
|
||||
),
|
||||
array(
|
||||
'slug' => 'embed',
|
||||
'title' => _x( 'Embeds', 'block category' ),
|
||||
'title' => __( 'Embeds' ),
|
||||
'icon' => null,
|
||||
),
|
||||
array(
|
||||
'slug' => 'reusable',
|
||||
'title' => _x( 'Reusable Blocks', 'block category' ),
|
||||
'title' => __( 'Reusable Blocks' ),
|
||||
'icon' => null,
|
||||
),
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user