apply_filters( 'media_send_to_editor', string $html, int $send_id, array $attachment )
- Since
- 2.5.0
Filters the HTML markup for a media item sent to the editor.
Compatibility
- WordPress
- since 2.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$htmlstring- HTML markup for a media item sent to the editor.
$send_idint- The first key from the $_POST['send'] data.
$attachmentarray- Array of attachment metadata.
Where this hook fires · 2
wp-admin/includes/ajax-actions.php:3373wp_ajax_send_attachment_to_editor()wp-admin/includes/media.php:858media_upload_form_handler()
Source code
* @see wp_get_attachment_metadata() * * @param string $html HTML markup for a media item sent to the editor. * @param int $send_id The first key from the $_POST['send'] data. * @param array $attachment Array of attachment metadata. */ $html = apply_filters( 'media_send_to_editor', $html, $send_id, $attachment ); return media_send_to_editor( $html ); } return $errors;}Changelog
Introduced in 2.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.