wp_pre_kses_less_than_callback

Definition:
function wp_pre_kses_less_than_callback( $matches ) {}

Callback function used by preg_replace.

Parameters

  • array $matches: Populated by matches to preg_replace.

Return values

returns:The text returned after esc_html if needed.

Source code

function wp_pre_kses_less_than_callback( $matches ) {

	if ( false === strpos($matches[0], '>') )

		return esc_html($matches[0]);

	return $matches[0];

}

3995

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: