WP_Importer::min_whitespace()publicWP 1.0

Replaces newlines, tabs, and multiple spaces with a single space.

Метод класса: WP_Importer{}

Хуков нет.

Возвращает

Строку.

Использование

$WP_Importer = new WP_Importer();
$WP_Importer->min_whitespace( $text );
$text(строка) (обязательный)
-

Код WP_Importer::min_whitespace() WP 6.5.2

public function min_whitespace( $text ) {
	return preg_replace( '|[\r\n\t ]+|', ' ', $text );
}