wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_kses_html_error › WordPress Function

Depuis1.0.0
Dépréciéen/a
wp_kses_html_error ( $attr )
Paramètres:
  • (string) $attr
    Requis: Oui
Retourne:
  • (string)
Défini(e) dans:
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 );
}