Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_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
130       * @param string $html    The image HTML markup to send.
131       * @param int    $id      The attachment id.
132       * @param string $caption The image caption.
133       * @param string $title   The image title.
134       * @param string $align   The image alignment.
135       * @param string $url     The image source URL.
136       * @param string $size    The image size.
137       * @param string $alt     The image alternative, or alt, text.
138       */
139      $html = apply_filters( 'image_send_to_editor', $html, $id, $caption, $title, $align, $url, $size, $alt );
140
141      return $html;
142 }
143
144 /**
145  * Adds image shortcode with caption to editor
146  *
147  * @since 2.6.0
148  *