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



wp_kses_html_error › WordPress Function

Da1.0.0
Deprecaton/a
wp_kses_html_error ( $attr )
Parametri:
  • (string) $attr
    Richiesto:
Ritorna:
  • (string)
Definito a:
Codex:

Handles parsing errors in `wp_kses_hair()`.

The general plan is to remove everything to and including some whitespace, but it deals with quotes and apostrophes as well.


Sorgenti

function wp_kses_html_error( $attr ) {
	return preg_replace( '/^("[^"]*("|$)|\'[^\']*(\'|$)|\S)*\s*/', '', $attr );
}