Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_send_to_editor_url

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
803                 *
804                 * @since 2.8.0
805                 *
806                 * @param string $html  HTML markup sent to the editor for an image.
807                 * @param string $src   Image source URL.
808                 * @param string $alt   Image alternate, or alt, text.
809                 * @param string $align The image alignment. Default 'alignnone'. Possible values include
810                 *                      'alignleft', 'aligncenter', 'alignright', 'alignnone'.
811                 */
812                $html = apply_filters( 'image_send_to_editor_url', $html, esc_url_raw( $src ), $alt, $align );
813           }
814
815           return media_send_to_editor($html);
816      }
817
818      if ( isset( $_POST['save'] ) ) {
819           $errors['upload_notice'] = __('Saved.');
820           wp_enqueue_script( 'admin-gallery' );
821            return wp_iframe( 'media_upload_gallery_form', $errors );