Changeset 31304 for trunk/src/wp-includes/media.php
- Timestamp:
- 01/30/2015 04:01:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r31239 r31304 942 942 * @see gallery_shortcode() 943 943 * 944 * @param string $output The gallery output. Default empty. 945 * @param array $attr Attributes of the gallery shortcode. 946 */ 947 $output = apply_filters( 'post_gallery', '', $attr ); 944 * @param string $output The gallery output. Default empty. 945 * @param array $attr Attributes of the gallery shortcode. 946 * @param int $instance Unique numeric ID of this gallery shortcode instance. 947 */ 948 $output = apply_filters( 'post_gallery', '', $attr, $instance ); 948 949 if ( $output != '' ) { 949 950 return $output; … … 1215 1216 * @since 3.9.0 1216 1217 * 1217 * @param string $output Playlist output. Default empty. 1218 * @param array $attr An array of shortcode attributes. 1219 */ 1220 $output = apply_filters( 'post_playlist', '', $attr ); 1218 * @param string $output Playlist output. Default empty. 1219 * @param array $attr An array of shortcode attributes. 1220 * @param int $instance Unique numeric ID of this playlist shortcode instance. 1221 */ 1222 $output = apply_filters( 'post_playlist', '', $attr, $instance ); 1221 1223 if ( $output != '' ) { 1222 1224 return $output;
Note: See TracChangeset
for help on using the changeset viewer.