882 | | $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>', |
883 | | esc_url( home_url( '/' ) ), |
884 | | wp_get_attachment_image( $custom_logo_id, 'full', false, array( |
885 | | 'class' => 'custom-logo', |
886 | | 'itemprop' => 'logo', |
887 | | ) ) |
888 | | ); |
| 882 | $custom_logo = wp_get_attachment_image( $custom_logo_id, 'full', false, array( |
| 883 | 'class' => 'custom-logo', |
| 884 | 'itemprop' => 'logo', |
| 885 | ) ); |
| 886 | if ( is_front_page() ) { |
| 887 | $html = $custom_logo; |
| 888 | |
| 889 | // If not on the front page, link the logo to home. |
| 890 | } else { |
| 891 | $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>', |
| 892 | esc_url( home_url( '/' ) ), |
| 893 | $custom_logo |
| 894 | ); |
| 895 | } |