wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_pre_kses_less_than_callback › WordPress Function

Od2.3.0
Przestarzałyn/a
wp_pre_kses_less_than_callback ( $matches )
Parametry:
  • (string[]) $matches Populated by matches to preg_replace.
    Wymagane: Tak
Powrót:
  • (string) The text returned after esc_html if needed.
Zdefiniowane na:
Codex:

Callback function used by preg_replace.



Źródło

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