diff --git a/src/wp-content/themes/twentytwentythree/styles/whisper.json b/src/wp-content/themes/twentytwentythree/styles/whisper.json
index 3fd195eaac..25c34d2a88 100644
a
|
b
|
|
251 | 251 | "width": "6px 0 0 0" |
252 | 252 | } |
253 | 253 | }, |
| 254 | "core/site-logo": { |
| 255 | "elements": { |
| 256 | "link": { |
| 257 | "border": { |
| 258 | "width": "0" |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | }, |
254 | 263 | "core/site-title": { |
255 | 264 | "elements": { |
256 | 265 | "link": { |
diff --git a/src/wp-includes/block-template-utils.php b/src/wp-includes/block-template-utils.php
index fe43d89564..f7a10ab672 100644
a
|
b
|
function _get_block_template_file( $template_type, $slug ) { |
355 | 355 | * @type string $post_type Post type to get the templates for. |
356 | 356 | * } |
357 | 357 | * |
358 | | * @return array|null Template files on success, null if `$template_type` is not matched. |
| 358 | * @return array Template |
359 | 359 | */ |
360 | 360 | function _get_block_templates_files( $template_type, $query = array() ) { |
361 | 361 | if ( 'wp_template' !== $template_type && 'wp_template_part' !== $template_type ) { |