Inline documentation for hooks in wp-includes/shortcodes.php.

props natejacobs.
see #25229.

git-svn-id: https://develop.svn.wordpress.org/trunk@25423 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-09-13 09:01:20 +00:00
parent 5959a7011b
commit d60cbb399e
1 changed files with 12 additions and 1 deletions

View File

@ -338,7 +338,18 @@ function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
else else
$out[$name] = $default; $out[$name] = $default;
} }
/**
* Filter a shortcode's default attributes.
*
* If the third parameter of the shortcode_atts() function is present then this filter is available.
* The third parameter, $shortcode, is the name of the shortcode.
*
* @since 3.6.0
*
* @param array $out The output array of shortcode attributes.
* @param array $pairs The supported attributes and their defaults.
* @param array $atts The user defined shortcode attributes.
*/
if ( $shortcode ) if ( $shortcode )
$out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts ); $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts );