Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_send_to_editor

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2040           $alt = isset( $attachment['image_alt'] ) ? $attachment['image_alt'] : '';
2041           $caption = isset( $attachment['post_excerpt'] ) ? $attachment['post_excerpt'] : '';
2042           $title = ''; // We no longer insert title tags into <img> tags, as they are redundant.
2043           $html = get_image_send_to_editor( $id, $caption, $title, $align, $url, (bool) $rel, $size, $alt );
2044      } elseif ( 'video' === substr( $post->post_mime_type, 0, 5 ) || 'audio' === substr( $post->post_mime_type, 0, 5 )  ) {
2045           $html = stripslashes_deep( $_POST['html'] );
2046      }
2047
2048      /** This filter is documented in wp-admin/includes/media.php */
2049      $html = apply_filters( 'media_send_to_editor', $html, $id, $attachment );
2050
2051      wp_send_json_success( $html );
2052 }
2053
2054 /**
2055  * Generates the HTML to send a non-image embed link to the editor.
2056  *
2057  * Backwards compatible with the following filters:
2058  * - file_send_to_editor_url