Skip to content

Commit

Permalink
Add experimental indication to name and description of block area cpt (
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefilipecosta authored May 10, 2019
1 parent 94d48e0 commit 4108e37
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit 4108e37

Please sign in to comment.