wpcf7_strip_newline()
Strips newline characters.
Хуков нет.
Возвращает
Строку. Processed one-line text.
Использование
wpcf7_strip_newline( $text );
- $text(строка) (обязательный)
- Input text.
Код wpcf7_strip_newline() wpcf7 strip newline CF7 6.1.7
function wpcf7_strip_newline( $text ) {
$text = (string) $text;
$text = str_replace( array( "\r", "\n" ), '', $text );
return wpcf7_strip_whitespaces( $text );
}