diff --git a/wp-content/themes/twentytwenty/functions.php b/wp-content/themes/twentytwenty/functions.php index b350091349..292e2a4cff 100644 --- a/wp-content/themes/twentytwenty/functions.php +++ b/wp-content/themes/twentytwenty/functions.php @@ -178,6 +178,9 @@ require get_template_directory() . '/classes/class-twentytwenty-non-latin-langua // Custom CSS. require get_template_directory() . '/inc/custom-css.php'; +// Block Patterns. +require get_template_directory() . '/inc/block-patterns.php'; + /** * Register and Enqueue Styles. */ diff --git a/wp-content/themes/twentytwenty/inc/block-patterns.php b/wp-content/themes/twentytwenty/inc/block-patterns.php new file mode 100644 index 0000000000..6e6427bbd3 --- /dev/null +++ b/wp-content/themes/twentytwenty/inc/block-patterns.php @@ -0,0 +1,203 @@ + esc_html__( 'Twenty Twenty', 'twentytwenty' ) ) + ); +} + +/** + * Register Block Patterns. + */ +if ( function_exists( 'register_block_pattern' ) ) { + + // Call to Action. + register_block_pattern( + 'twentytwenty/call-to-action', + array( + 'title' => esc_html__( 'Call to Action', 'twentytwenty' ), + 'categories' => array( 'twentytwenty' ), + 'viewportWidth' => 1400, + 'content' => implode( + '', + array( + '', + '
' . esc_html__( 'Members get access to exclusive exhibits and sales. Our memberships cost $99.99 and are billed annually.', 'twentytwenty' ) . '
', + '', + '', + ' ', + '' . esc_html__( 'Award-winning exhibitions featuring internationally-renowned artists.', 'twentytwenty' ) . '
', + '', + '', + ' ', + '' . esc_html__( 'An awe-inspiring collection of books, prints, and gifts from our exhibitions.', 'twentytwenty' ) . '
', + '', + '', + ' ', + '' . wp_kses_post( __( 'Dates
Aug 1 — Dec 1', 'twentytwentyone' ) ) . '
' . wp_kses_post( __( 'Location
Exhibit Hall B', 'twentytwentyone' ) ) . '
' . wp_kses_post( __( 'Price
Included', 'twentytwentyone' ) ) . '
' . esc_html__( 'August 1 — December 1', 'twentytwenty' ) . '
', + '', + '', + ' ', + '' . esc_html__( 'August 1 — December 1', 'twentytwenty' ) . '
', + '', + '', + ' ', + '' . esc_html__( 'With seven floors of striking architecture, UMoMA shows exhibitions of international contemporary art, sometimes along with art historical retrospectives. Existential, political, and philosophical issues are intrinsic to our program. As visitor, you are invited to guided tours artist talks, lectures, film screenings, and other events with free admission.', 'twentytwenty' ) . '
', + '', + ) + ) + ) + ); +} diff --git a/wp-includes/version.php b/wp-includes/version.php index f64cbe8d98..1dcbd49be8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta1-49346'; +$wp_version = '5.6-beta1-49347'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.