WP_REST_Post_Search_Handler::prepare_item_links( int $id ): array

In this article

Prepares links for the search result of a given ID.

Parameters

$idintrequired
Item ID.

Return

array Links for the given item.

Source

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;
}

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.