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!