wp_unslash( string|array $value )

Remove slashes from a string or array of strings.


Description

This should be used to remove slashes from data passed to core API that expects data to be unslashed.


Parameters

$value

(string|array) (Required) String or array of strings to unslash.


Return

(string|array) Unslashed $value


Source

File: wp-includes/formatting.php

function wp_unslash( $value ) {
	return stripslashes_deep( $value );
}


Changelog

Changelog
Version Description
WP-3.6.0 Introduced.