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.

Built from https://develop.svn.wordpress.org/trunk@48130


git-svn-id: http://core.svn.wordpress.org/trunk@47899 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
noisysocks 2020-06-23 00:15:11 +00:00
parent 9edf42f215
commit e7f9aca8dd
2 changed files with 10 additions and 10 deletions

View File

@ -2179,33 +2179,33 @@ function use_block_editor_for_post_type( $post_type ) {
function get_block_categories( $post ) { function get_block_categories( $post ) {
$default_categories = array( $default_categories = array(
array( array(
'slug' => 'text', 'slug' => 'common',
'title' => _x( 'Text', 'block category' ), 'title' => __( 'Common Blocks' ),
'icon' => null, 'icon' => null,
), ),
array( array(
'slug' => 'media', 'slug' => 'formatting',
'title' => _x( 'Media', 'block category' ), 'title' => __( 'Formatting' ),
'icon' => null, 'icon' => null,
), ),
array( array(
'slug' => 'design', 'slug' => 'layout',
'title' => _x( 'Design', 'block category' ), 'title' => __( 'Layout Elements' ),
'icon' => null, 'icon' => null,
), ),
array( array(
'slug' => 'widgets', 'slug' => 'widgets',
'title' => _x( 'Widgets', 'block category' ), 'title' => __( 'Widgets' ),
'icon' => null, 'icon' => null,
), ),
array( array(
'slug' => 'embed', 'slug' => 'embed',
'title' => _x( 'Embeds', 'block category' ), 'title' => __( 'Embeds' ),
'icon' => null, 'icon' => null,
), ),
array( array(
'slug' => 'reusable', 'slug' => 'reusable',
'title' => _x( 'Reusable Blocks', 'block category' ), 'title' => __( 'Reusable Blocks' ),
'icon' => null, 'icon' => null,
), ),
); );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-alpha-48129'; $wp_version = '5.5-alpha-48130';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.