addslashes_strings_only()WP 5.3.0

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

Changelog

Since 5.3.0 Introduced.
Deprecated since 5.6.0

addslashes_strings_only() code WP 6.8.3

function addslashes_strings_only( $value ) {
	return is_string( $value ) ? addslashes( $value ) : $value;
}