Changeset 61463 for trunk/src/wp-includes/media.php
- Timestamp:
- 01/10/2026 05:01:08 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/media.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r61453 r61463 6037 6037 */ 6038 6038 if ( 'img' === $tag_name ) { 6039 if ( isset( $attr['decoding'] ) ) { 6040 $loading_attrs['decoding'] = $attr['decoding']; 6041 } else { 6042 $loading_attrs['decoding'] = 'async'; 6043 } 6039 $loading_attrs['decoding'] = $attr['decoding'] ?? 'async'; 6044 6040 } 6045 6041
Note: See TracChangeset
for help on using the changeset viewer.