WP_REST_Menu_Items_Controller::get_schema_links() WordPress Method
The WP_REST_Menu_Items_Controller::get_schema_links() method is used to get the links for the REST API schema.
WP_REST_Menu_Items_Controller::get_schema_links() #
Retrieve Link Description Objects that should be added to the Schema for the posts collection.
Return
(array)
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php
protected function get_schema_links() {
$links = parent::get_schema_links();
$href = rest_url( "{$this->namespace}/{$this->rest_base}/{id}" );
$links[] = array(
'rel' => 'https://api.w.org/menu-item-object',
'title' => __( 'Get linked object.' ),
'href' => $href,
'targetSchema' => array(
'type' => 'object',
'properties' => array(
'object' => array(
'type' => 'integer',
),
),
),
);
return $links;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |