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
1653       * @since 2.5.0
1654       * @since 4.2.0 The `$instance` parameter was added.
1655       *
1656       * @see gallery_shortcode()
1657       *
1658       * @param string $output   The gallery output. Default empty.
1659       * @param array  $attr     Attributes of the gallery shortcode.
1660       * @param int    $instance Unique numeric ID of this gallery shortcode instance.
1661       */
1662      $output = apply_filters( 'post_gallery', '', $attr, $instance );
1663      if ( $output != '' ) {
1664           return $output;
1665      }
1666
1667      $html5 = current_theme_supports( 'html5', 'gallery' );
1668      $atts = shortcode_atts( array(
1669           'order'      => 'ASC',
1670           'orderby'    => 'menu_order ID',
1671           'id'         => $post ? $post->ID : 0,