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



wp_kses_html_error › WordPress Function

Seit1.0.0
Veraltetn/v
wp_kses_html_error ( $attr )
Parameter:
  • (string) $attr
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
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.


Quellcode

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