Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_add_caption_shortcode

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
144      $html = preg_replace( '/(class=["\'][^\'"]*)align(none|left|right|center)\s?/', '$1', $html );
145      if ( empty($align) )
146           $align = 'none';
147
148      $alt = ! empty($alt) ? addslashes($alt) : '';
149
150      $shcode = '[caption id="' . $id . '" align="align' . $align
151      . '" width="' . $width . '" caption="' . $alt . '"]' . $html . '[/caption]';
152
153      return apply_filters( 'image_add_caption_shortcode', $shcode, $html );
154 }
155 add_filter( 'image_send_to_editor', 'image_add_caption', 20, 7 );
156
157 /**
158  * {@internal Missing Short Description}}
159  *
160  * @since unknown
161  *
162  * @param unknown_type $html