WP_REST_Autosaves_Controller::get_item_schema
Retrieves the autosave's schema, conforming to JSON Schema.
Method of the class: WP_REST_Autosaves_Controller{}
No Hooks.
Returns
Array. Item schema data.
Usage
$WP_REST_Autosaves_Controller = new WP_REST_Autosaves_Controller(); $WP_REST_Autosaves_Controller->get_item_schema();
Changelog
| Since 5.0.0 | Introduced. |
WP_REST_Autosaves_Controller::get_item_schema() WP REST Autosaves Controller::get item schema code WP 6.8.3
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 );
}