You appear to be a bot. Output may be restricted
Description
Writes the header of the export.
Usage
WPSEO_Export::export_header();
Parameters
Returns
void
Source
File name: wordpress-seo/admin/class-export.php
Lines:
1 to 9 of 9
private function export_header() { $header = sprintf( /* translators: %1$s expands to Yoast SEO, %2$s expands to Yoast.com */ esc_html__( 'These are settings for the %1$s plugin by %2$s', 'wordpress-seo' ), 'Yoast SEO', 'Yoast.com' ); $this->write_line( '; ' . $header ); }