wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_kses_html_error › WordPress Function

Since1.0.0
Deprecatedn/a
wp_kses_html_error ( $attr )
Parameters:
  • (string) $attr
    Required: Yes
Returns:
  • (string)
Defined at:
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.


Source

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