wp_img_tag_add_width_and_height_attr хук-фильтрWP 5.5.0

Filters whether to add the missing width and height HTML attributes to the img tag. Default true.

Returning anything else than true will not add the attributes.

Использование

add_filter( 'wp_img_tag_add_width_and_height_attr', 'wp_kama_img_tag_add_width_and_height_attr_filter', 10, 4 );

/**
 * Function for `wp_img_tag_add_width_and_height_attr` filter-hook.
 * 
 * @param bool   $value         The filtered value.
 * @param string $image         The HTML `img` tag where the attribute should be added.
 * @param string $context       Additional context about how the function was called or where the img tag is.
 * @param int    $attachment_id The image attachment ID.
 *
 * @return bool
 */
function wp_kama_img_tag_add_width_and_height_attr_filter( $value, $image, $context, $attachment_id ){

	// filter...
	return $value;
}
$value(true|false)
The filtered value.
По умолчанию: true
$image(строка)
The HTML img tag where the attribute should be added.
$context(строка)
Additional context about how the function was called or where the img tag is.
$attachment_id(int)
The image attachment ID.

Список изменений

С версии 5.5.0 Введена.

Где вызывается хук

wp_img_tag_add_width_and_height_attr()
wp_img_tag_add_width_and_height_attr
wp-includes/media.php 2124
$add = apply_filters( 'wp_img_tag_add_width_and_height_attr', true, $image, $context, $attachment_id );

Где используется хук в WordPress

Использование не найдено.