diff --git a/wp-admin/edit-form-blocks.php b/wp-admin/edit-form-blocks.php index e80877bcc0..c08cde109a 100644 --- a/wp-admin/edit-form-blocks.php +++ b/wp-admin/edit-form-blocks.php @@ -202,8 +202,6 @@ $editor_settings = array( 'ajaxUrl' => admin_url( 'admin-ajax.php' ), ), 'supportsLayout' => WP_Theme_JSON_Resolver::theme_has_support(), - '__experimentalBlockPatterns' => WP_Block_Patterns_Registry::get_instance()->get_all_registered(), - '__experimentalBlockPatternCategories' => WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered(), 'supportsTemplateMode' => current_theme_supports( 'block-templates' ), // Whether or not to load the 'postcustom' meta box is stored as a user meta diff --git a/wp-admin/site-editor.php b/wp-admin/site-editor.php index a413ddb2d6..09706dafd0 100644 --- a/wp-admin/site-editor.php +++ b/wp-admin/site-editor.php @@ -67,8 +67,6 @@ $custom_settings = array( 'defaultTemplateTypes' => $indexed_template_types, 'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(), '__unstableHomeTemplate' => $home_template, - '__experimentalBlockPatterns' => WP_Block_Patterns_Registry::get_instance()->get_all_registered(), - '__experimentalBlockPatternCategories' => WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered(), ); $editor_settings = get_block_editor_settings( $custom_settings, $block_editor_context ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 995e7ab385..709b885d96 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53154'; +$wp_version = '6.0-alpha-53155'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.