_wp_kses_decode_entities_chr

The timeline below displays how wordpress function _wp_kses_decode_entities_chr has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.2

/**
 * Regex callback for `wp_kses_decode_entities()`.
 *
 * @since 2.9.0
 * @access private
 * @ignore
 *
 * @param array $matches preg match
 * @return string
 */
function _wp_kses_decode_entities_chr($matches)
{
    return chr($matches[1]);
}

WordPress Version: 5.1

/**
 * Regex callback for `wp_kses_decode_entities()`.
 *
 * @since 2.9.0
 * @access private
 * @ignore
 *
 * @param array $match preg match
 * @return string
 */
function _wp_kses_decode_entities_chr($match)
{
    return chr($match[1]);
}

WordPress Version: 4.8

/**
 * Regex callback for wp_kses_decode_entities()
 *
 * @since 2.9.0
 *
 * @param array $match preg match
 * @return string
 */
function _wp_kses_decode_entities_chr($match)
{
    return chr($match[1]);
}

WordPress Version: 3.7

/**
 * Regex callback for wp_kses_decode_entities()
 *
 * @param array $match preg match
 * @return string
 */
function _wp_kses_decode_entities_chr($match)
{
    return chr($match[1]);
}