WP_REST_Templates_Controller::get_items( WP_REST_Request $request ): WP_REST_Response

In this article

Returns a list of templates.

Parameters

$requestWP_REST_Requestrequired
The request instance.

Return

WP_REST_Response

Source

public function get_items( $request ) {
	$query = array();
	if ( isset( $request['wp_id'] ) ) {
		$query['wp_id'] = $request['wp_id'];
	}
	if ( isset( $request['area'] ) ) {
		$query['area'] = $request['area'];
	}
	if ( isset( $request['post_type'] ) ) {
		$query['post_type'] = $request['post_type'];
	}

	$templates = array();
	foreach ( get_block_templates( $query, $this->post_type ) as $template ) {
		$data        = $this->prepare_item_for_response( $template, $request );
		$templates[] = $this->prepare_response_for_collection( $data );
	}

	return rest_ensure_response( $templates );
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

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