wp_slash_strings_only( mixed $value ): mixed

This function has been deprecated. Use wp_slash() instead.

Adds slashes to only string values in an array of values.

Description

This should be used when preparing data for core APIs that expect slashed data.
This should not be used to escape data going directly into an SQL query.

See also

Parameters

$valuemixedrequired
Scalar or array of scalars.

Return

mixed Slashes $value

Source

function wp_slash_strings_only( $value ) {
	return map_deep( $value, 'addslashes_strings_only' );
}

Changelog

VersionDescription
5.6.0Use wp_slash()
5.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.