diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php
index 384c056404..b997312908 100644
|
a
|
b
|
function get_header_image_tag( $attr = array() ) { |
| 1234 | 1234 | } |
| 1235 | 1235 | } |
| 1236 | 1236 | |
| | 1237 | /* |
| | 1238 | * Filters the list of header image attributes. |
| | 1239 | * |
| | 1240 | * @since 5.9.0 |
| | 1241 | * |
| | 1242 | * @param array $attr Array of the attributes for the image tag. |
| | 1243 | * @param object $header The custom header object returned by 'get_custom_header()'. |
| | 1244 | */ |
| | 1245 | $attr = apply_filters( 'get_header_image_tag_attributes', $attr, $header ); |
| | 1246 | |
| 1237 | 1247 | $attr = array_map( 'esc_attr', $attr ); |
| 1238 | 1248 | $html = '<img'; |
| 1239 | 1249 | |