You appear to be a bot. Output may be restricted
Description
Writes a settings line to the export.
Usage
WPSEO_Export::write_setting( $key, $val );
Parameters
- $key
- ( string ) required – Key string.
- $val
- ( string ) required – Value string.
Returns
void
Source
File name: wordpress-seo/admin/class-export.php
Lines:
1 to 6 of 6
private function write_setting( $key, $val ) { if ( is_string( $val ) ) { $val = '"' . $val . '"'; } $this->write_line( $key . ' = ' . $val ); }