diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php
index ca2dbc02ec..ee4f6d7dd1 100644
a
|
b
|
function get_custom_logo( $blog_id = 0 ) { |
893 | 893 | // We have a logo. Logo is go. |
894 | 894 | if ( $custom_logo_id ) { |
895 | 895 | $custom_logo_attr = array( |
896 | | 'class' => 'custom-logo', |
897 | | 'itemprop' => 'logo', |
| 896 | 'class' => 'custom-logo', |
898 | 897 | ); |
899 | 898 | |
900 | 899 | /* |
… |
… |
function get_custom_logo( $blog_id = 0 ) { |
911 | 910 | * it because wp_get_attachment_image() already adds the alt attribute. |
912 | 911 | */ |
913 | 912 | $html = sprintf( |
914 | | '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>', |
| 913 | '<a href="%1$s" class="custom-logo-link" rel="home">%2$s</a>', |
915 | 914 | esc_url( home_url( '/' ) ), |
916 | 915 | wp_get_attachment_image( $custom_logo_id, 'full', false, $custom_logo_attr ) |
917 | 916 | ); |