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



wp_kses_data › WordPress Function

Seit2.9.0
Veraltetn/v
wp_kses_data ( $data )
Parameter:
  • (string) $data Content to filter, expected to not be escaped.
    Erforderlich: Ja
Gibt zurück:
  • (string) Filtered content.
Definiert in:
Codex:

Sanitize content with allowed HTML KSES rules.

This function expects unslashed data.


Quellcode

function wp_kses_data( $data ) {
	return wp_kses( $data, current_filter() );
}