mirrored from git://develop.git.wordpress.org/
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php | ||
/** | ||
* Server-side rendering of the `core/site-logo` block. | ||
* | ||
* @package WordPress | ||
*/ | ||
|
||
/** | ||
* Renders the `core/site-logo` block on the server. | ||
* | ||
* @param array $attributes The block attributes. | ||
* | ||
* @return string The render. | ||
*/ | ||
function render_block_core_site_logo( $attributes ) { | ||
$adjust_width_height_filter = function ( $image ) use ( $attributes ) { | ||
if ( empty( $attributes['width'] ) ) { | ||
return $image; | ||
} | ||
$height = (float) $attributes['width'] / ( (float) $image[1] / (float) $image[2] ); | ||
return array( $image[0], (int) $attributes['width'], (int) $height ); | ||
}; | ||
|
||
add_filter( 'wp_get_attachment_image_src', $adjust_width_height_filter ); | ||
|
||
$custom_logo = get_custom_logo(); | ||
|
||
if ( empty( $custom_logo ) ) { | ||
return ''; // Return early if no custom logo is set, avoiding extraneous wrapper div. | ||
} | ||
|
||
if ( ! $attributes['isLink'] ) { | ||
// Remove the link. | ||
$custom_logo = preg_replace( '#<a.*?>(.*?)</a>#i', '\1', $custom_logo ); | ||
} | ||
|
||
if ( $attributes['isLink'] && '_blank' === $attributes['linkTarget'] ) { | ||
// Add the link target after the rel="home". | ||
// Add an aria-label for informing that the page opens in a new tab. | ||
$aria_label = 'aria-label="' . esc_attr__( '(Home link, opens in a new tab)' ) . '"'; | ||
$custom_logo = str_replace( 'rel="home"', 'rel="home" target="' . $attributes['linkTarget'] . '"' . $aria_label, $custom_logo ); | ||
} | ||
|
||
$classnames = array(); | ||
if ( ! empty( $attributes['className'] ) ) { | ||
$classnames[] = $attributes['className']; | ||
} | ||
|
||
if ( ! empty( $attributes['align'] ) && in_array( $attributes['align'], array( 'center', 'left', 'right' ), true ) ) { | ||
$classnames[] = "align{$attributes['align']}"; | ||
} | ||
|
||
if ( empty( $attributes['width'] ) ) { | ||
$classnames[] = 'is-default-size'; | ||
} | ||
|
||
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) ); | ||
$html = sprintf( '<div %s>%s</div>', $wrapper_attributes, $custom_logo ); | ||
remove_filter( 'wp_get_attachment_image_src', $adjust_width_height_filter ); | ||
return $html; | ||
} | ||
|
||
|
||
/** | ||
* Registers the `core/site-logo` block on the server. | ||
*/ | ||
function register_block_core_site_logo() { | ||
register_block_type_from_metadata( | ||
__DIR__ . '/site-logo', | ||
array( | ||
'render_callback' => 'render_block_core_site_logo', | ||
) | ||
); | ||
} | ||
add_action( 'init', 'register_block_core_site_logo' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"apiVersion": 2, | ||
"name": "core/site-logo", | ||
"title": "Site Logo", | ||
"category": "layout", | ||
"description": "Useful for displaying a graphic mark, design, or symbol to represent the site. Once a site logo is set, it can be reused in different places and templates. It should not be confused with the site icon, which is the small image used in the dashboard, browser tabs, public search results, etc, to help recognize a site.", | ||
"textdomain": "default", | ||
"attributes": { | ||
"align": { | ||
"type": "string" | ||
}, | ||
"width": { | ||
"type": "number" | ||
}, | ||
"isLink": { | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"linkTarget": { | ||
"type": "string", | ||
"default": "_self" | ||
} | ||
}, | ||
"supports": { | ||
"html": false, | ||
"align": true, | ||
"alignWide": false | ||
}, | ||
"styles": [ | ||
{ | ||
"name": "default", | ||
"label": "Default", | ||
"isDefault": true | ||
}, | ||
{ "name": "rounded", "label": "Rounded" } | ||
], | ||
"editorStyle": "wp-block-site-logo-editor", | ||
"style": "wp-block-site-logo" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6108,6 +6108,20 @@ mockedApiResponse.Schema = { | |
"PATCH" | ||
], | ||
"args": { | ||
"theme_mods_default": { | ||
"description": "", | ||
"type": "object", | ||
"properties": { | ||
"custom_logo": { | ||
"type": [ | ||
"integer", | ||
"boolean" | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": false | ||
}, | ||
"title": { | ||
"description": "Site title.", | ||
"type": "string", | ||
|
@@ -6118,6 +6132,11 @@ mockedApiResponse.Schema = { | |
"type": "string", | ||
"required": false | ||
}, | ||
"stylesheet": { | ||
"description": "", | ||
"type": "string", | ||
"required": false | ||
}, | ||
"url": { | ||
"description": "Site URL.", | ||
"type": "string", | ||
|
@@ -7997,8 +8016,12 @@ mockedApiResponse.CommentModel = { | |
}; | ||
|
||
mockedApiResponse.settings = { | ||
"theme_mods_default": { | ||
"custom_logo": false | ||
}, | ||
"title": "Test Blog", | ||
"description": "Just another WordPress site", | ||
"stylesheet": "default", | ||
"url": "http://example.org", | ||
"email": "[email protected]", | ||
"timezone": "", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters