wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



funky_javascript_callback › WordPress Function

Seit2.8.0
Veraltet3.0.0
funky_javascript_callback ( $matches )
Zugriff:
  • private
Parameter:
  • (array) $matches Single Match
    Erforderlich: Ja
Gibt zurück:
  • (string) An HTML entity
Definiert in:
Codex:

Callback used to change %uXXXX to &#YYY; syntax



Quellcode

function funky_javascript_callback($matches) {
	return "&#".base_convert($matches[1],16,10).";";
}