WP_REST_Widgets_Controller::get_collection_params()
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() WP REST Widgets Controller::get collection params code WP 6.8
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', ), ); }