Changeset 39665
- Timestamp:
- 01/03/2017 03:57:03 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r39351 r39665 332 332 * 333 333 * @param bool|string $return Short-circuit return value. Either false or the value to replace the shortcode with. 334 * @param string $tag Shortcode name.335 * @param array $attr Shortcode attributes array,336 * @param array $m Regular expression match array.334 * @param string $tag Shortcode name. 335 * @param array|string $attr Shortcode attributes array or empty string. 336 * @param array $m Regular expression match array. 337 337 */ 338 338 $return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); … … 351 351 * 352 352 * @param string $output Shortcode output. 353 * @param string $tag Shortcode name.354 * @param array $attr Shortcode attributes array,355 * @param array $m Regular expression match array.353 * @param string $tag Shortcode name. 354 * @param array|string $attr Shortcode attributes array or empty string. 355 * @param array $m Regular expression match array. 356 356 */ 357 357 return apply_filters( 'do_shortcode_tag', $output, $tag, $attr, $m );
Note: See TracChangeset
for help on using the changeset viewer.