Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: img_caption_shortcode_width

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
670       *     The attributes of the caption shortcode.
671       *
672       *     @type string 'id'      The ID of the div element for the caption.
673       *     @type string 'align'   The class name that aligns the caption. Default 'alignnone'.
674       *     @type int    'width'   The width of the image being captioned.
675       *     @type string 'caption' The image's caption.
676       * }
677       * @param string $content The image element, possibly wrapped in a hyperlink.
678       */
679      $caption_width = apply_filters( 'img_caption_shortcode_width', $caption_width, $atts, $content );
680
681      $style = '';
682      if ( $caption_width )
683           $style = 'style="width: ' . (int) $caption_width . 'px" ';
684
685      return '<div ' . $atts['id'] . $style . 'class="wp-caption ' . esc_attr( $atts['align'] ) . '">'
686      . do_shortcode( $content ) . '<p class="wp-caption-text">' . $atts['caption'] . '</p></div>';
687 }
688