Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_gallery

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
2282       * @since 2.5.0
2283       * @since 4.2.0 The `$instance` parameter was added.
2284       *
2285       * @see gallery_shortcode()
2286       *
2287       * @param string $output   The gallery output. Default empty.
2288       * @param array  $attr     Attributes of the gallery shortcode.
2289       * @param int    $instance Unique numeric ID of this gallery shortcode instance.
2290       */
2291      $output = apply_filters( 'post_gallery', '', $attr, $instance );
2292
2293      if ( ! empty( $output ) ) {
2294           return $output;
2295      }
2296
2297      $html5 = current_theme_supports( 'html5', 'gallery' );
2298      $atts  = shortcode_atts(
2299           array(
2300                'order'      => 'ASC',