apply_filters( ‘wp_img_tag_add_decoding_attr’, string|false|null $value, string $image, string $context )

In this article

Filters the decoding attribute value to add to an image. Default async.

Description

Returning a falsey value will omit the attribute.

Parameters

$valuestring|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', 'sync', or 'auto'. Defaults to false.
$imagestring
The HTML img tag to be filtered.
$contextstring
Additional context about how the function was called or where the img tag is.

Source

if ( empty( $decoding_val ) ) {
	/**
	 * Filters the `decoding` attribute value to add to an image. Default `async`.
	 *
	 * Returning a falsey value will omit the attribute.
	 *

Changelog

VersionDescription
6.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.