addslashes_strings_only( mixed $value )

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

Adds slashes only if the provided value is a string.

Description

See also

Parameters

$value

(mixed) (Required)

Return

(mixed)

Source

File: wp-includes/deprecated.php

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

Changelog

Version Description
5.6.0 This function has been deprecated. Use wp_slash() instead.
5.3.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/addslashes_strings_only