wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_kses_post › WordPress Function

Seit2.9.0
Veraltetn/v
wp_kses_post ( $data )
Parameter:
  • (string) $data Post content to filter.
    Erforderlich: Ja
Gibt zurück:
  • (string) Filtered post content with allowed HTML tags and attributes intact.
Definiert in:
Codex:

Sanitizes content for allowed HTML tags for post content.

Post content refers to the page contents of the 'post' type and not $_POST data from forms. This function expects unslashed data.


Quellcode

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