Make WordPress Core

Changeset 48130


Ignore:
Timestamp:
06/23/2020 12:13:29 AM (4 years ago)
Author:
noisysocks
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/post.php

    r48121 r48130  
    21802180    $default_categories = array(
    21812181        array(
    2182             'slug'  => 'text',
    2183             'title' => _x( 'Text', 'block category' ),
     2182            'slug'  => 'common',
     2183            'title' => __( 'Common Blocks' ),
    21842184            'icon'  => null,
    21852185        ),
    21862186        array(
    2187             'slug'  => 'media',
    2188             'title' => _x( 'Media', 'block category' ),
     2187            'slug'  => 'formatting',
     2188            'title' => __( 'Formatting' ),
    21892189            'icon'  => null,
    21902190        ),
    21912191        array(
    2192             'slug'  => 'design',
    2193             'title' => _x( 'Design', 'block category' ),
     2192            'slug'  => 'layout',
     2193            'title' => __( 'Layout Elements' ),
    21942194            'icon'  => null,
    21952195        ),
    21962196        array(
    21972197            'slug'  => 'widgets',
    2198             'title' => _x( 'Widgets', 'block category' ),
     2198            'title' => __( 'Widgets' ),
    21992199            'icon'  => null,
    22002200        ),
    22012201        array(
    22022202            'slug'  => 'embed',
    2203             'title' => _x( 'Embeds', 'block category' ),
     2203            'title' => __( 'Embeds' ),
    22042204            'icon'  => null,
    22052205        ),
    22062206        array(
    22072207            'slug'  => 'reusable',
    2208             'title' => _x( 'Reusable Blocks', 'block category' ),
     2208            'title' => __( 'Reusable Blocks' ),
    22092209            'icon'  => null,
    22102210        ),
Note: See TracChangeset for help on using the changeset viewer.