Changeset 34868
- Timestamp:
- 10/06/2015 02:33:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r34761 r34868 531 531 * 532 532 * @since 3.6.0 533 * @since 4.4.0 Added the `$shortcode` parameter. 533 534 * 534 * @param array $out The output array of shortcode attributes. 535 * @param array $pairs The supported attributes and their defaults. 536 * @param array $atts The user defined shortcode attributes. 535 * @param array $out The output array of shortcode attributes. 536 * @param array $pairs The supported attributes and their defaults. 537 * @param array $atts The user defined shortcode attributes. 538 * @param string $shortcode The shortcode name. 537 539 */ 538 if ( $shortcode ) 539 $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts ); 540 if ( $shortcode ) { 541 $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts, $shortcode ); 542 } 540 543 541 544 return $out;
Note: See TracChangeset
for help on using the changeset viewer.