WP_REST_Edit_Site_Export_Controller::register_routes()publicWP 5.9.0

Registers the site export route.

Method of the class: WP_REST_Edit_Site_Export_Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_REST_Edit_Site_Export_Controller = new WP_REST_Edit_Site_Export_Controller();
$WP_REST_Edit_Site_Export_Controller->register_routes();

Changelog

Since 5.9.0 Introduced.

WP_REST_Edit_Site_Export_Controller::register_routes() code WP 6.4.3

public function register_routes() {
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base,
		array(
			array(
				'methods'             => WP_REST_Server::READABLE,
				'callback'            => array( $this, 'export' ),
				'permission_callback' => array( $this, 'permissions_check' ),
			),
		)
	);
}