You appear to be a bot. Output may be restricted
Description
Writes a line to the export.
Usage
WPSEO_Export::write_line( $line, $newline_first );
Parameters
- $line
- ( string ) required – Line string.
- $newline_first
- ( bool ) optional – Boolean flag whether to prepend with new line.
Returns
void
Source
File name: wordpress-seo/admin/class-export.php
Lines:
1 to 6 of 6
private function write_line( $line, $newline_first = false ) { if ( $newline_first ) { $this->export .= PHP_EOL; } $this->export .= $line . PHP_EOL; }