wppaste
WordPress

apply_filters( "{$type}_send_to_editor_url", string $html, string $src, string $title )

Since
3.3.0
Filters the URL sent to the editor for a specific media type.

Description

The dynamic portion of the hook name, $type, refers to the type of media being sent.

Possible hook names include:

  • audio_send_to_editor_url
  • file_send_to_editor_url
  • video_send_to_editor_url

Compatibility

WordPress
since 3.3.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 sent to the editor.
$srcstring
Media source URL.
$titlestring
Media title.

Where this hook fires · 2

  • wp-admin/includes/ajax-actions.php:3479wp_ajax_send_link_to_editor()
  • wp-admin/includes/media.php:952wp_media_upload_handler()

Source code

			 * @since 3.3.0			 *			 * @param string $html  HTML markup sent to the editor.			 * @param string $src   Media source URL.			 * @param string $title Media title.			 */			$html = apply_filters( "{$type}_send_to_editor_url", $html, sanitize_url( $src ), $title );		} else {			$align = '';			$alt   = esc_attr( wp_unslash( $_POST['alt'] ) ); 			if ( isset( $_POST['align'] ) ) {				$align = esc_attr( wp_unslash( $_POST['align'] ) );

Changelog

Introduced in 3.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 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.