apply_filters( 'image_send_to_editor', string $html, int $id, string $caption, string $title, string $align, string $url, string|int[] $size, string $alt, string $rel )

Filters the image HTML markup to send to the editor when inserting an image.


Parameters

$html

The image HTML markup to send.

$id

The attachment ID.

$caption

The image caption.

$title

The image title.

$align

The image alignment.

$url

The image source URL.

$size

Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).

$alt

The image alternative, or alt, text.

$rel

The image rel attribute.


Source

File: wp-admin/includes/media.php

View on GitHub



Changelog

Changelog
Version Description
5.6.0 The $rel parameter was added.
2.5.0 Introduced.