apply_filters( 'wp_img_tag_add_decoding_attr', string|false|null $value , string $image , string $context )
Filters the decoding
attribute value to add to an image. Default async
.
Description
Returning a falsey value will omit the attribute.
Parameters
-
$value
string|false|null -
The
decoding
attribute value. Returning a falsey value will result in the attribute being omitted for the image.
Otherwise, it may be:'async'
(default),'sync'
, or'auto'
. -
$image
string -
The HTML
img
tag to be filtered. -
$context
string -
Additional context about how the function was called or where the img tag is.
Source
File: wp-includes/media.php
.
View all references
$value = apply_filters( 'wp_img_tag_add_decoding_attr', 'async', $image, $context );
Changelog
Version | Description |
---|---|
6.1.0 | Introduced. |