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



_cleanup_image_add_caption › WordPress Function

Seit3.4.0
Veraltetn/v
_cleanup_image_add_caption ( $matches )
Zugriff:
  • private
Parameter:
  • (array) $matches Single regex match.
    Erforderlich: Ja
Gibt zurück:
  • (string) Cleaned up HTML for caption.
Definiert in:
Codex:

Private preg_replace callback used in image_add_caption().



Quellcode

function _cleanup_image_add_caption( $matches ) {
	// Remove any line breaks from inside the tags.
	return preg_replace( '/[\r\n\t]+/', ' ', $matches[0] );
}