WP_REST_Sidebars_Controller::get_items( WP_REST_Request $request ): WP_REST_Response

In this article

Retrieves the list of sidebars (active or inactive).

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

WP_REST_Response Response object on success.

Source

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 );
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.