From b2eeb9696b0aca7733292faeaf14a70463289c13 Mon Sep 17 00:00:00 2001 From: Jorge Date: Fri, 10 May 2019 15:45:11 +0100 Subject: [PATCH] Add experimental indication to name and description of block area cpt --- lib/widgets.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/widgets.php b/lib/widgets.php index e26f0b5574f597..e35ccf5b0ef385 100644 --- a/lib/widgets.php +++ b/lib/widgets.php @@ -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' ),