IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 1587 | 1587 | * |
| 1588 | 1588 | * @since 4.4.2 |
| 1589 | 1589 | * |
| 1590 | | * @param mixed $value The array or string to filter. |
| 1591 | | * @return mixed $value The filtered content. |
| | 1590 | * @param mixed $data The array, object, or scalar. |
| | 1591 | * @return mixed The filtered content. |
| 1592 | 1592 | */ |
| 1593 | 1593 | function wp_kses_post_deep( $data ) { |
| 1594 | 1594 | return map_deep( $data, 'wp_kses_post' ); |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 3888 | 3888 | * |
| 3889 | 3889 | * @param mixed $value The array, object, or scalar. |
| 3890 | 3890 | * @param callable $callback The function to map onto $value. |
| 3891 | | * @return The value with the callback applied to all non-arrays and non-objects inside it. |
| | 3891 | * @return mixed The value with the callback applied to all non-arrays and non-objects inside it. |
| 3892 | 3892 | */ |
| 3893 | 3893 | function map_deep( $value, $callback ) { |
| 3894 | 3894 | if ( is_array( $value ) ) { |