WP_REST_Sidebars_Controller::get_items() WordPress Method
The WP_REST_Sidebars_Controller::get_items() method is used to retrieve a list of sidebars.
WP_REST_Sidebars_Controller::get_items( WP_REST_Request $request ) #
Retrieves the list of sidebars (active or inactive).
Parameters
- $request
(WP_REST_Request)(Required)Full details about the request.
Return
(WP_REST_Response) Response object on success.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php
public function get_items( $request ) { $this->retrieve_widgets(); $data = array(); $permissions_check = $this->do_permissions_check(); foreach ( wp_get_sidebars_widgets() as $id => $widgets ) { $sidebar = $this->get_sidebar( $id ); if ( ! $sidebar ) { continue; } if ( is_wp_error( $permissions_check ) && ! $this->check_read_permission( $sidebar ) ) { continue; } $data[] = $this->prepare_response_for_collection( $this->prepare_item_for_response( $sidebar, $request ) ); } return rest_ensure_response( $data ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |