WP_Importer::min_whitespace()publicWP 1.0

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

Method of the class: WP_Importer{}

No Hooks.

Return

String.

Usage

$WP_Importer = new WP_Importer();
$WP_Importer->min_whitespace( $text );
$text(string) (required)
-

WP_Importer::min_whitespace() code WP 6.5.2

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