WP_REST_Widget_Types_Controller::get_items( WP_REST_Request $request ): WP_REST_Response|WP_Error

In this article

Retrieves the list of all widget types.

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_items( $request ) {
	$data = array();
	foreach ( $this->get_widgets() as $widget ) {
		$widget_type = $this->prepare_item_for_response( $widget, $request );
		$data[]      = $this->prepare_response_for_collection( $widget_type );
	}

	return rest_ensure_response( $data );
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

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