Make WordPress Core

Ticket #46124: 46124.3.patch

File 46124.3.patch, 860 bytes (added by sabernhardt, 3 years ago)
  • src/wp-includes/theme.php

     
    12081208        $width  = absint( $header->width );
    12091209        $height = absint( $header->height );
    12101210
     1211        // Use alternative text assigned to the image, if available. Otherwise, leave it empty.
     1212        if ( ! empty( $header->attachment_id ) && ! empty( get_post_meta( $header->attachment_id, '_wp_attachment_image_alt', true ) ) ) {
     1213                $alt = get_post_meta( $header->attachment_id, '_wp_attachment_image_alt', true );
     1214        } else {
     1215                $alt = '';
     1216        }
     1217
    12111218        $attr = wp_parse_args(
    12121219                $attr,
    12131220                array(
     
    12141221                        'src'    => $header->url,
    12151222                        'width'  => $width,
    12161223                        'height' => $height,
    1217                         'alt'    => get_bloginfo( 'name' ),
     1224                        'alt'    => $alt,
    12181225                )
    12191226        );
    12201227