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



wp_filter_nohtml_kses › WordPress Function

Seit2.1.0
Veraltetn/v
wp_filter_nohtml_kses ( $data )
Parameter:
  • (string) $data Content to strip all HTML from.
    Erforderlich: Ja
Gibt zurück:
  • (string) Filtered content without any HTML.
Definiert in:
Codex:

Strips all HTML from a text string.

This function expects slashed data.


Quellcode

function wp_filter_nohtml_kses( $data ) {
	return addslashes( wp_kses( stripslashes( $data ), 'strip' ) );
}