Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add experimental indication to name and description of block area cpt #15563

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/widgets.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ function gutenberg_create_wp_area_post_type() {
register_post_type(
'wp_area',
array(
'description' => __( 'Experimental custom post type that will store block areas referenced by themes.', 'gutenberg' ),
'labels' => array(
'name' => _x( 'Block Area', 'post type general name', 'gutenberg' ),
'singular_name' => _x( 'Block Area', 'post type singular name', 'gutenberg' ),
'name' => _x( 'Block Area (Experimental)', 'post type general name', 'gutenberg' ),
'singular_name' => _x( 'Block Area (Experimental)', 'post type singular name', 'gutenberg' ),
'menu_name' => _x( 'Block Areas', 'admin menu', 'gutenberg' ),
'name_admin_bar' => _x( 'Block Area', 'add new on admin bar', 'gutenberg' ),
'add_new' => _x( 'Add New', 'Block', 'gutenberg' ),
Expand Down