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