wordpress / latest / functions / wp_kses_post.html

wp_kses_post( string $data ): string

Sanitizes 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.

This function expects unslashed data.

Parameters

$data string Required
Post content to filter.

Return

string Filtered post content with allowed HTML tags and attributes intact.

Source

File: wp-includes/kses.php. View all references

function wp_kses_post( $data ) {
	return wp_kses( $data, 'post' );
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
2.9.0 Introduced.

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