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 ) {
	if ( $request->is_method( 'HEAD' ) ) {
		// Return early as this handler doesn't add any response headers.
		return new WP_REST_Response( array() );
	}

	$data = array();
	foreach ( $this->get_widgets() as $widget ) {
		$widget_type = $this->prepare_item_for_response( $widget, $request );

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

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