(type)_send_to_editor_url
Filters the URL sent to the editor for a specific media type.
The dynamic portion of the hook name, $type, refers to the type of media being sent.
Possible hook names include:
Usage
add_filter( '(type)_send_to_editor_url', 'wp_kama_type_send_to_editor_url_filter', 10, 3 ); /** * Function for `(type)_send_to_editor_url` filter-hook. * * @param string $html HTML markup sent to the editor. * @param string $src Media source URL. * @param string $title Media title. * * @return string */ function wp_kama_type_send_to_editor_url_filter( $html, $src, $title ){ // filter... return $html; }
- $html(string)
- HTML markup sent to the editor.
- $src(string)
- Media source URL.
- $title(string)
- Media title.
Changelog
Since 3.3.0 | Introduced. |
Where the hook is called
(type)_send_to_editor_url
(type)_send_to_editor_url
wp-admin/includes/media.php 934
$html = apply_filters( "{$type}_send_to_editor_url", $html, sanitize_url( $src ), $title );
wp-admin/includes/ajax-actions.php 3442
$html = apply_filters( "{$type}_send_to_editor_url", $html, $src, $link_text );