WP_REST_Server::__construct()

Instantiates the REST server.


Source

File: wp-includes/rest-api/class-wp-rest-server.php

	public function __construct() {
		$this->endpoints = array(
			// Meta endpoints.
			'/' => array(
				'callback' => array( $this, 'get_index' ),
				'methods' => 'GET',
				'args' => array(
					'context' => array(
						'default' => 'view',
					),
				),
			),
		);
	}

Changelog

Changelog
Version Description
WP-4.4.0 Introduced.