diff --git a/wp-content/themes/twentytwentyone/inc/block-patterns.php b/wp-content/themes/twentytwentyone/inc/block-patterns.php
index cd66ff9c66..b66dddf594 100644
--- a/wp-content/themes/twentytwentyone/inc/block-patterns.php
+++ b/wp-content/themes/twentytwentyone/inc/block-patterns.php
@@ -47,6 +47,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
'title' => esc_html__( 'Large text', 'twentytwentyone' ),
'categories' => array( 'twentytwentyone' ),
'viewportWidth' => 1440,
+ 'blockTypes' => array( 'core/heading' ),
'content' => '
' . esc_html__( 'A new portfolio default theme for WordPress', 'twentytwentyone' ) . '
',
)
);
@@ -58,6 +59,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
'title' => esc_html__( 'Links area', 'twentytwentyone' ),
'categories' => array( 'twentytwentyone' ),
'viewportWidth' => 1440,
+ 'blockTypes' => array( 'core/cover' ),
'description' => esc_html_x( 'A huge text followed by social networks and email address links.', 'Block pattern description', 'twentytwentyone' ),
'content' => '' . wp_kses_post( __( 'Let’s Connect.', 'twentytwentyone' ) ) . '
',
)
@@ -82,6 +84,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
'title' => esc_html__( 'Overlapping images', 'twentytwentyone' ),
'categories' => array( 'twentytwentyone' ),
'viewportWidth' => 1024,
+ 'blockTypes' => array( 'core/columns' ),
'description' => esc_html_x( 'Three images inside an overlapping columns block.', 'Block pattern description', 'twentytwentyone' ),
'content' => '',
)
@@ -106,6 +109,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
'title' => esc_html__( 'Overlapping images and text', 'twentytwentyone' ),
'categories' => array( 'twentytwentyone' ),
'viewportWidth' => 1440,
+ 'blockTypes' => array( 'core/columns' ),
'description' => esc_html_x( 'An overlapping columns block with two images and a text description.', 'Block pattern description', 'twentytwentyone' ),
'content' => ' ',
)
@@ -127,6 +131,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
array(
'title' => esc_html__( 'Contact information', 'twentytwentyone' ),
'categories' => array( 'twentytwentyone' ),
+ 'blockTypes' => array( 'core/columns' ),
'description' => esc_html_x( 'A block with 3 columns that display contact information and social media links.', 'Block pattern description', 'twentytwentyone' ),
'content' => '' . esc_html_x( '123 Main Street', 'Block pattern sample content', 'twentytwentyone' ) . '
' . esc_html_x( 'Cambridge, MA, 02139', 'Block pattern sample content', 'twentytwentyone' ) . '
',
)
diff --git a/wp-includes/version.php b/wp-includes/version.php
index f37689a8da..d51c7b0953 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '6.1-alpha-53715';
+$wp_version = '6.1-alpha-53716';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.