wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_pre_kses_less_than › WordPress Function

Da2.3.0
Deprecaton/a
wp_pre_kses_less_than ( $content )
Parametri:
  • (string) $content Text to be converted.
    Richiesto:
Ritorna:
  • (string) Converted text.
Definito a:
Codex:

Converts lone less than signs.

KSES already converts lone greater than signs.


Sorgenti

function wp_pre_kses_less_than( $content ) {
	return preg_replace_callback( '%<[^>]*?((?=<)|>|$)%', 'wp_pre_kses_less_than_callback', $content );
}