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



wp_kses_html_error › WordPress Function

Od1.0.0
Przestarzałyn/a
wp_kses_html_error ( $attr )
Parametry:
  • (string) $attr
    Wymagane: Tak
Powrót:
  • (string)
Zdefiniowane na:
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.


Źródło

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