addslashes_strings_only()
Deprecated since 5.6.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Adds slashes only if the provided value is a string.
No Hooks.
Returns
Mixed.
Usage
addslashes_strings_only( $value );
- $value(mixed) (required)
- .
Notes
- See: wp_slash()
Changelog
| Since 5.3.0 | Introduced. |
| Deprecated since | 5.6.0 |
addslashes_strings_only() addslashes strings only code WP 6.8.3
function addslashes_strings_only( $value ) {
return is_string( $value ) ? addslashes( $value ) : $value;
}