Adds slashes only if the provided value is a string.
$valuemixedrequired
function addslashes_strings_only( $value ) {
return is_string( $value ) ? addslashes( $value ) : $value;
}
| Version | Description |
|---|---|
| 5.6.0 | This function has been deprecated. Use wp_slash() instead. |
| 5.3.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/addslashes_strings_only