From a3d2826e61ecd470c4dcb3e27d534d600ccd606f Mon Sep 17 00:00:00 2001 From: poena Date: Thu, 20 Feb 2025 05:40:24 +0000 Subject: [PATCH] Twenty Twelve: Update the quote pattern to use the quote block. This change updates the Left-aligned Large Quote pattern to use the quote block instead of paragraph blocks. Props flairwebtechnologies, sabernhardt, karmatosed, wpeople, poena, nithins53, balub, sukhendu2002, dilip2615, itpathsolutions, shraddhagore, shailu25. Fixes #61765. Built from https://develop.svn.wordpress.org/trunk@59842 git-svn-id: http://core.svn.wordpress.org/trunk@59184 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwelve/inc/block-patterns.php | 11 +++++------ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/wp-content/themes/twentytwelve/inc/block-patterns.php b/wp-content/themes/twentytwelve/inc/block-patterns.php index 430b6584aa..65cdbd28b6 100644 --- a/wp-content/themes/twentytwelve/inc/block-patterns.php +++ b/wp-content/themes/twentytwelve/inc/block-patterns.php @@ -67,18 +67,17 @@ if ( function_exists( 'register_block_pattern' ) ) { ) ); - // Heading and paragraph arranged as a large quote. + // Quote with large paragraph text. register_block_pattern( 'twentytwelve/large-quote', array( 'title' => esc_html__( 'Left-aligned Large Quote', 'twentytwelve' ), 'categories' => array( 'twentytwelve' ), 'viewportWidth' => 700, - 'content' => ' -

' . esc_html__( '"Few people are capable of expressing with equanimity opinions which differ from the prejudices of their social environment. Most people are even incapable of forming such opinions."', 'twentytwelve' ) . '

- -

' . esc_html__( '— Albert Einstein', 'twentytwelve' ) . '

- ', + 'content' => '
+

' . esc_html__( '"Few people are capable of expressing with equanimity opinions which differ from the prejudices of their social environment. Most people are even incapable of forming such opinions."', 'twentytwelve' ) . '

+ ' . esc_html__( '— Albert Einstein', 'twentytwelve' ) . '
+ ', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 97d236ea5b..e3b9599356 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59841'; +$wp_version = '6.8-alpha-59842'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.