Docs: Use the correct parameter name in the DocBlock for `wp_kses_post_deep()`, introduced in [36429].

Props sebastianpisula.
Fixes #35700. See #35316.


git-svn-id: https://develop.svn.wordpress.org/trunk@36489 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2016-02-07 00:17:59 +00:00
parent e0787b6a2b
commit fed210d8ae
1 changed files with 4 additions and 2 deletions

View File

@ -1587,8 +1587,10 @@ function wp_kses_post( $data ) {
*
* @since 4.4.2
*
* @param mixed $value The array or string to filter.
* @return mixed $value The filtered content.
* @see map_deep()
*
* @param mixed $data The array, object, or scalar value to inspect.
* @return mixed The filtered content.
*/
function wp_kses_post_deep( $data ) {
return map_deep( $data, 'wp_kses_post' );