WP_REST_Edit_Site_Export_Controller::__construct() WordPress Method
The WP_REST_Edit_Site_Export_Controller::__construct() method initializes the class and sets up the necessary data for it to function properly. It also sets up the WP_REST_Edit_Site_Controller::$export_format property to be used by the other methods in this class.
WP_REST_Edit_Site_Export_Controller::__construct() #
Constructor.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php
	public function __construct() {
		$this->namespace = 'wp-block-editor/v1';
		$this->rest_base = 'export';
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 5.9.0 | Introduced. |