W3cubDocs

/WordPress

addslashes_strings_only( mixed $value )

Adds slashes only if the provided value is a string.

Parameters

$value

(mixed) (Required)

Return

(mixed)

Source

File: wp-includes/formatting.php

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

Changelog

Version Description
5.3.0 Introduced.

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