_wp_kses_split_callback
Callback for wp_kses_split.
Description
(string) _wp_kses_split_callback( $match );
Returns (string)
Parameters (1)
- 0. $match
- The match.
Usage
if ( !function_exists( '_wp_kses_split_callback' ) ) { require_once ABSPATH . WPINC . '/kses.php'; } // The match. $match = null; // NOTICE! Understand what this does before running. $result = _wp_kses_split_callback($match);
Defined (1)
The function is defined in the following location(s).
- /wp-includes/kses.php
- function _wp_kses_split_callback( $match ) {
- global $pass_allowed_html, $pass_allowed_protocols;
- return wp_kses_split2( $match[0], $pass_allowed_html, $pass_allowed_protocols );
- }