Changeset 58197
- Timestamp:
- 05/25/2024 03:02:48 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r57695 r58197 418 418 * 419 419 * @since 4.7.0 420 * @since 6.5.0 The `$attr` parameter is always an array. 420 421 * 421 422 * @param false|string $output Short-circuit return value. Either false or the value to replace the shortcode with. 422 423 * @param string $tag Shortcode name. 423 * @param array |string $attr Shortcode attributes array or the original arguments string if itcannot be parsed.424 * @param array $attr Shortcode attributes array, can be empty if the original arguments string cannot be parsed. 424 425 * @param array $m Regular expression match array. 425 426 */ … … 437 438 * 438 439 * @since 4.7.0 440 * @since 6.5.0 The `$attr` parameter is always an array. 439 441 * 440 * @param string 441 * @param string 442 * @param array |string $attr Shortcode attributes array or the original arguments string if itcannot be parsed.443 * @param array 442 * @param string $output Shortcode output. 443 * @param string $tag Shortcode name. 444 * @param array $attr Shortcode attributes array, can be empty if the original arguments string cannot be parsed. 445 * @param array $m Regular expression match array. 444 446 */ 445 447 return apply_filters( 'do_shortcode_tag', $output, $tag, $attr, $m ); … … 601 603 * 602 604 * @since 2.5.0 603 * @since 6.5.0 The function now always returns an emptyarray,605 * @since 6.5.0 The function now always returns an array, 604 606 * even if the original arguments string cannot be parsed or is empty. 605 607 *
Note: See TracChangeset
for help on using the changeset viewer.