WP_REST_Widgets_Controller::get_collection_params()publicWP 5.8.0

Gets the list of collection params.

Method of the class: WP_REST_Widgets_Controller{}

No Hooks.

Return

Array[].

Usage

$WP_REST_Widgets_Controller = new WP_REST_Widgets_Controller();
$WP_REST_Widgets_Controller->get_collection_params();

Changelog

Since 5.8.0 Introduced.

WP_REST_Widgets_Controller::get_collection_params() code WP 6.5.2

public function get_collection_params() {
	return array(
		'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		'sidebar' => array(
			'description' => __( 'The sidebar to return widgets for.' ),
			'type'        => 'string',
		),
	);
}