Make WordPress Core


Ignore:
Timestamp:
09/14/2023 11:23:59 AM (15 months ago)
Author:
spacedmonkey
Message:

Bundled Theme: Implement the_header_image_tag function for enhanced compatibility for older core themes.

The the_header_image_tag function was introduced in WordPress 4.4 as part of [35594]. It is used in all themes created post WordPress 4.4 that supported header images. The function get_header_image_tag continues to get updated with new image features, like lazy loading, async decoding and fetch priority. To ensure our core themes maintain compatibility and benefit from these enhancements, a backward compatibility shim has been applied, integrating the the_header_image_tag function into the following core themes:

  • Twenty Ten
  • Twenty Eleven
  • Twenty Twelve
  • Twenty Fourteen
  • Twenty Sixteen

This change ensures future compatibility and modern image features are applied for header images to these older themes.

Props spacedmonkey, flixos90, mukesh27.
Fixes #58675.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentysixteen/header.php

    r55276 r56583  
    103103                <div class="header-image">
    104104                    <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
    105                         <img src="<?php header_image(); ?>" srcset="<?php echo esc_attr( wp_get_attachment_image_srcset( get_custom_header()->attachment_id ) ); ?>" sizes="<?php echo esc_attr( $custom_header_sizes ); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
     105                        <?php
     106                        $custom_header = get_custom_header();
     107                        $attrs         = array(
     108                            'alt'    => get_bloginfo( 'name', 'display' ),
     109                            'sizes'  => $custom_header_sizes,
     110                            'height' => $custom_header->height,
     111                            'width'  => $custom_header->width,
     112                        );
     113
     114                        the_header_image_tag( $attrs );
     115                        ?>
    106116                    </a>
    107117                </div><!-- .header-image -->
Note: See TracChangeset for help on using the changeset viewer.