WP_REST_Sidebars_Controller::get_items()
Retrieves the list of sidebars (active or inactive).
Method of the class: WP_REST_Sidebars_Controller{}
No Hooks.
Return
WP_REST_Response
. Response object on success.
Usage
$WP_REST_Sidebars_Controller = new WP_REST_Sidebars_Controller(); $WP_REST_Sidebars_Controller->get_items( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 5.8.0 | Introduced. |
WP_REST_Sidebars_Controller::get_items() WP REST Sidebars Controller::get items code WP 6.6.2
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 ); }