Template: Explicitly set `full` as the default custom logo size.

See #33755.


git-svn-id: https://develop.svn.wordpress.org/trunk@36950 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Konstantin Obenland 2016-03-10 19:02:25 +00:00
parent 6f69ca857e
commit cda0901425
2 changed files with 6 additions and 0 deletions

View File

@ -878,6 +878,10 @@ function get_custom_logo( $blog_id = 0 ) {
$custom_logo_id = get_theme_mod( 'custom_logo' );
$size = get_theme_support( 'custom-logo', 'size' );
if ( ! $size ) {
$size = 'full';
}
// We have a logo. Logo is go.
if ( $custom_logo_id ) {
$html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',

View File

@ -280,6 +280,7 @@ class Tests_General_Template extends WP_UnitTestCase {
$this->_set_custom_logo();
$home_url = get_home_url( $blog_id, '/' );
$size = get_theme_support( 'custom-logo', 'size' );
$size = $size ? $size : 'full';
$image = wp_get_attachment_image( $this->custom_logo_id, $size, false, array(
'class' => "custom-logo attachment-$size",
'data-size' => $size,
@ -302,6 +303,7 @@ class Tests_General_Template extends WP_UnitTestCase {
$this->_set_custom_logo();
$size = get_theme_support( 'custom-logo', 'size' );
$size = $size ? $size : 'full';
$image = wp_get_attachment_image( $this->custom_logo_id, $size, false, array(
'class' => "custom-logo attachment-$size",
'data-size' => $size,