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



_autop_newline_preservation_helper › WordPress Function

Seit3.1.0
Veraltetn/v
_autop_newline_preservation_helper ( $matches )
Zugriff:
  • private
Parameter:
  • (array) $matches preg_replace_callback matches array
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
Codex:

Newline preservation help function for wpautop().



Quellcode

function _autop_newline_preservation_helper( $matches ) {
	return str_replace( "\n", '<WPPreserveNewline />', $matches[0] );
}