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:
Robert Anderson 2020-06-23 00:13:29 +00:00
parent 5acb95916f
commit 65dfce752e

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,
), ),
); );