You appear to be a bot. Output may be restricted
Description
Imports the data submitted by the user.
Usage
$void = WPSEO_Import_Settings::import();
Parameters
Returns
void
Source
File name: wordpress-seo/admin/import/class-import-settings.php
Lines:
1 to 14 of 14
public function import() { check_admin_referer( self::NONCE_ACTION ); if ( ! WPSEO_Capability_Utils::current_user_can( 'wpseo_manage_options' ) ) { return; } $content = filter_input( INPUT_POST, 'settings_import' ); if ( empty( $content ) ) { return; } $this->parse_options( $content ); }