WP_REST_Autosaves_Controller::get_item_schema()publicWP 5.0.0

Retrieves the autosave's schema, conforming to JSON Schema.

Метод класса: WP_REST_Autosaves_Controller{}

Хуков нет.

Возвращает

Массив. Item schema data.

Использование

$WP_REST_Autosaves_Controller = new WP_REST_Autosaves_Controller();
$WP_REST_Autosaves_Controller->get_item_schema();

Список изменений

С версии 5.0.0 Введена.

Код WP_REST_Autosaves_Controller::get_item_schema() WP 6.5.2

public function get_item_schema() {
	if ( $this->schema ) {
		return $this->add_additional_fields_schema( $this->schema );
	}

	$schema = $this->revisions_controller->get_item_schema();

	$schema['properties']['preview_link'] = array(
		'description' => __( 'Preview link for the post.' ),
		'type'        => 'string',
		'format'      => 'uri',
		'context'     => array( 'edit' ),
		'readonly'    => true,
	);

	$this->schema = $schema;

	return $this->add_additional_fields_schema( $this->schema );
}