WP_REST_Post_Search_Handler::prepare_item_links() public WP 5.0.0
Prepares links for the search result of a given ID.
{} It's a method of the class: WP_REST_Post_Search_Handler{}
No Hooks.
Return
Array. Links for the given item.
Usage
$WP_REST_Post_Search_Handler = new WP_REST_Post_Search_Handler(); $WP_REST_Post_Search_Handler->prepare_item_links( $id );
- $id(int) (required)
- Item ID.
Changelog
Since 5.0.0 | Introduced. |
Code of WP_REST_Post_Search_Handler::prepare_item_links() WP REST Post Search Handler::prepare item links WP 5.6
public function prepare_item_links( $id ) {
$post = get_post( $id );
$links = array();
$item_route = rest_get_route_for_post( $post );
if ( ! empty( $item_route ) ) {
$links['self'] = array(
'href' => rest_url( $item_route ),
'embeddable' => true,
);
}
$links['about'] = array(
'href' => rest_url( 'wp/v2/types/' . $post->post_type ),
);
return $links;
}