WP_REST_Term_Search_Handler::prepare_item_links() WordPress Method
The WP_REST_Term_Search_Handler::prepare_item_links() method is used to prepare the links for a term when it is returned as part of a rest response.
WP_REST_Term_Search_Handler::prepare_item_links( int $id ) #
Prepares links for the search result of a given ID.
Parameters
- $id
(int)(Required)Item ID.
Return
(array) Links for the given item.
Source
File: wp-includes/rest-api/search/class-wp-rest-term-search-handler.php
public function prepare_item_links( $id ) {
$term = get_term( $id );
$links = array();
$item_route = rest_get_route_for_term( $term );
if ( $item_route ) {
$links['self'] = array(
'href' => rest_url( $item_route ),
'embeddable' => true,
);
}
$links['about'] = array(
'href' => rest_url( sprintf( 'wp/v2/taxonomies/%s', $term->taxonomy ) ),
);
return $links;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.6.0 | Introduced. |