wp_kses_post( string $data )
Sanitize content for allowed HTML tags for post content.
Description
Post content refers to the page contents of the ‘post’ type and not $_POST data from forms.
Parameters
- $data
-
(Required) Post content to filter
Return
(string) Filtered post content with allowed HTML tags and attributes intact.
Source
File: wp-includes/kses.php
function wp_kses_post( $data ) {
return wp_kses( $data, 'post' );
}
Changelog
Version | Description |
---|---|
WP-2.9.0 | Introduced. |