WP_REST_Block_Types_Controller::get_item( WP_REST_Request $request ): WP_REST_Response|WP_Error

In this article

Retrieves a specific block type.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.

Source

public function get_item( $request ) {
	$block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] );
	$block_type = $this->get_block( $block_name );
	if ( is_wp_error( $block_type ) ) {
		return $block_type;
	}
	$data = $this->prepare_item_for_response( $block_type, $request );

	return rest_ensure_response( $data );
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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