funky_javascript_callback

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

WordPress Version: 3.7

/**
 * Callback used to change %uXXXX to &#YYY; syntax
 *
 * @since 2.8.0
 * @access private
 * @deprecated 3.0.0
 *
 * @param array $matches Single Match
 * @return string An HTML entity
 */
function funky_javascript_callback($matches)
{
    return "&#" . base_convert($matches[1], 16, 10) . ";";
}