wp_pre_kses_less_than_callback

函数
wp_pre_kses_less_than_callback ( $matches )
参数
  • (string[]) $matches Populated by matches to preg_replace.
    Required:
返回值
  • (string) The text returned after esc_html if needed.
定义位置
相关方法
wp_pre_kses_less_thanwp_rel_callbackwp_rel_nofollow_callbackwp_targeted_link_rel_callbackwp_mediaelement_fallback
引入
2.3.0
弃用
-

wp_pre_kses_less_than_callback: 这个过滤器是用来过滤小于符号(<)的,在它被净化之前使用一个自定义的回调函数。它用于确保该符号在HTML输出中的安全使用。 preg_replace使用的回调函数。

function wp_pre_kses_less_than_callback( $matches ) {
	if ( false === strpos( $matches[0], ‘>’ ) ) {
		return esc_html( $matches[0] );
	}
	return $matches[0];
}

常见问题

FAQs
查看更多 >