WP_REST_Post_Types_Controller::prepare_links( WP_Post_Type $post_type ): array

In this article

Prepares links for the request.

Parameters

$post_typeWP_Post_Typerequired
The post type.

Return

array Links for the given post type.

Source

protected function prepare_links( $post_type ) {
	return array(
		'collection'              => array(
			'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
		),
		'https://api.w.org/items' => array(
			'href' => rest_url( rest_get_route_for_post_type_items( $post_type->name ) ),
		),
	);
}

Changelog

VersionDescription
6.1.0Introduced.

User Contributed Notes

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