Ticket #39294: 39294.patch
| File 39294.patch, 1.4 KB (added by , 9 years ago) |
|---|
-
src/wp-includes/shortcodes.php
331 331 * @since 4.7.0 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 ); 339 339 if ( false !== $return ) { … … 350 350 * @since 4.7.0 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 ); 358 358 }