WPSEO_Export::write_line()privateYoast 1.0

Writes a line to the export.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// private - только в коде основоного (родительского) класса
$result = $this->write_line( $line, $newline_first );
$line(строка) (обязательный)
Line string.
$newline_first(true|false)
Boolean flag whether to prepend with new line.
По умолчанию: false

Код WPSEO_Export::write_line() Yoast 22.4

private function write_line( $line, $newline_first = false ) {
	if ( $newline_first ) {
		$this->export .= PHP_EOL;
	}
	$this->export .= $line . PHP_EOL;
}