Make WordPress Core

Ticket #57368: 57368.diff

File 57368.diff, 1.2 KB (added by colorful tones, 2 months ago)
  • src/wp-content/themes/twentytwentythree/styles/whisper.json

    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  
    251251                                        "width": "6px 0 0 0"
    252252                                }
    253253                        },
     254                        "core/site-logo": {
     255                                "elements": {
     256                                        "link": {
     257                                                "border": {
     258                                                        "width": "0"
     259                                                }
     260                                        }
     261                                }
     262                        },
    254263                        "core/site-title": {
    255264                                "elements": {
    256265                                        "link": {
  • src/wp-includes/block-template-utils.php

    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 ) { 
    355355 *     @type string   $post_type    Post type to get the templates for.
    356356 * }
    357357 *
    358  * @return array|null Template files on success, null if `$template_type` is not matched.
     358 * @return array Template
    359359 */
    360360function _get_block_templates_files( $template_type, $query = array() ) {
    361361        if ( 'wp_template' !== $template_type && 'wp_template_part' !== $template_type ) {