WP_REST_Widget_Types_Controller::get_widget( string $id )

Gets the details about the requested widget.

Parameters

$id

(string) (Required) The widget type id.

Return

(array|WP_Error) The array of widget data if the name is valid, WP_Error otherwise.

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php

public function get_widget( $id ) {
		foreach ( $this->get_widgets() as $widget ) {
			if ( $id === $widget['id'] ) {
				return $widget;
			}
		}

		return new WP_Error( 'rest_widget_type_invalid', __( 'Invalid widget type.' ), array( 'status' => 404 ) );
	}

Changelog

Version Description
5.8.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_widget_types_controller/get_widget