diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php index 20a3fb1354..1a0fef056e 100644 --- a/src/wp-admin/includes/post.php +++ b/src/wp-admin/includes/post.php @@ -2240,18 +2240,19 @@ function get_block_editor_server_block_settings() { $block_registry = WP_Block_Type_Registry::get_instance(); $blocks = array(); $fields_to_pick = array( + 'api_version' => 'apiVersion', 'title' => 'title', 'description' => 'description', 'icon' => 'icon', - 'category' => 'category', - 'keywords' => 'keywords', - 'parent' => 'parent', - 'supports' => 'supports', 'attributes' => 'attributes', 'provides_context' => 'providesContext', 'uses_context' => 'usesContext', + 'supports' => 'supports', + 'category' => 'category', 'styles' => 'styles', 'textdomain' => 'textdomain', + 'parent' => 'parent', + 'keywords' => 'keywords', 'example' => 'example', );