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



wp_pre_kses_less_than_callback › WordPress Function

Seit2.3.0
Veraltetn/v
wp_pre_kses_less_than_callback ( $matches )
Parameter:
  • (string[]) $matches Populated by matches to preg_replace.
    Erforderlich: Ja
Gibt zurück:
  • (string) The text returned after esc_html if needed.
Definiert in:
Codex:

Callback function used by preg_replace.



Quellcode

function wp_pre_kses_less_than_callback( $matches ) {
	if ( ! str_contains( $matches[0], '>' ) ) {
		return esc_html( $matches[0] );
	}
	return $matches[0];
}