wp_kses_split( string $string, array $allowed_html, string[] $allowed_protocols )
Searches for HTML tags, no matter how malformed.
Description Description
It also matches stray >
characters.
Parameters Parameters
- $string
-
(string) (Required) Content to filter.
- $allowed_html
-
(array) (Required) Allowed HTML elements.
- $allowed_protocols
-
(string[]) (Required) Array of allowed URL protocols.
Return Return
(string) Content with fixed HTML tags
Source Source
File: wp-includes/kses.php
function wp_kses_split( $string, $allowed_html, $allowed_protocols ) { global $pass_allowed_html, $pass_allowed_protocols; $pass_allowed_html = $allowed_html; $pass_allowed_protocols = $allowed_protocols; return preg_replace_callback( '%(<!--.*?(-->|$))|(<[^>]*(>|$)|>)%', '_wp_kses_split_callback', $string ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Usage