Summery Summery
Checks if a given request has access to read and manage settings.
Syntax Syntax
Parameters Parameters
- $request
-
(Required) Full details about the request.
Return Return
(bool) True if the request has read access for the item, otherwise false.
Source Source
File: wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php
public function get_item_permissions_check( $request ) { return current_user_can( 'manage_options' ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |