wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_autop_newline_preservation_helper › WordPress Function

Da3.1.0
Deprecaton/a
_autop_newline_preservation_helper ( $matches )
Accedi:
  • private
Parametri:
  • (array) $matches preg_replace_callback matches array
    Richiesto:
Ritorna:
  • (string)
Definito a:
Codex:

Newline preservation help function for wpautop().



Sorgenti

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