wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_kses_html_error › WordPress Function

Since1.0.0
已弃用n/a
wp_kses_html_error ( $attr )
参数:
  • (string) $attr
    Required: Yes
返回:
  • (string)
定义在:
文档:

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.


源码

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