wp_pre_kses_less_than( string $content ): string

Converts lone less than signs.

Description

KSES already converts lone greater than signs.

Parameters

$contentstringrequired
Text to be converted.

Return

string Converted text.

Source

function wp_pre_kses_less_than( $content ) {
	return preg_replace_callback( '%<[^>]*?((?=<)|>|$)%', 'wp_pre_kses_less_than_callback', $content );
}

Changelog

VersionDescription
2.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.