wp_kses_stripslashes
wp_kses_stripslashes ( $content )
Parameters:- (string) content String to strip slashes from.
Returns:- (string) Fixed string with quoted slashes.
Defined at: - Introduced in WordPress: 1.0.0
- Deprecated in WordPress: —
Description
Strips slashes from in front of quotes.This function changes the character sequence `\"` to just `"`. It leaves all other
slashes alone. The quoting from `preg_replace(//e)` requires this.