WP_REST_Sidebars_Controller::get_items_permissions_check()
Checks if a given request has access to get sidebars.
Method of the class: WP_REST_Sidebars_Controller{}
No Hooks.
Return
true|WP_Error
. True if the request has read access, WP_Error object otherwise.
Usage
$WP_REST_Sidebars_Controller = new WP_REST_Sidebars_Controller(); $WP_REST_Sidebars_Controller->get_items_permissions_check( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 5.8.0 | Introduced. |
WP_REST_Sidebars_Controller::get_items_permissions_check() WP REST Sidebars Controller::get items permissions check code WP 6.6.2
public function get_items_permissions_check( $request ) { $this->retrieve_widgets(); foreach ( wp_get_sidebars_widgets() as $id => $widgets ) { $sidebar = $this->get_sidebar( $id ); if ( ! $sidebar ) { continue; } if ( $this->check_read_permission( $sidebar ) ) { return true; } } return $this->do_permissions_check(); }