WP_REST_Post_Search_Handler::prepare_item_links( int $id )

Prepares links for the search result of a given ID.


Description Description


Parameters Parameters

$id

(int) (Required) Item ID.


Top ↑

Return Return

(array) Links for the given item.


Top ↑

Source Source

File: wp-includes/rest-api/search/class-wp-rest-post-search-handler.php

	public function prepare_item_links( $id ) {
		$post = get_post( $id );

		$links = array();

		$item_route = $this->detect_rest_item_route( $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;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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