wp_filter_kses( string $data )
Sanitize content with allowed HTML KSES rules.
Description
This function expects slashed data.
Parameters
- $data
-
(string) (Required) Content to filter, expected to be escaped with slashes.
Return
(string) Filtered content.
More Information
wp_filter_kses
should generally be preferred over wp_kses_data
because wp_magic_quotes
escapes $_GET
, $_POST
, $_COOKIE
, $_SERVER
, and $_REQUEST
fairly early in the hook system, shortly after ‘plugins_loaded’ but earlier then ‘init’ or ‘wp_loaded’.
Source
File: wp-includes/kses.php
function wp_filter_kses( $data ) { return addslashes( wp_kses( stripslashes( $data ), current_filter() ) ); }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_filter_kses