On this page
WP_REST_Menus_Controller::get_items_permissions_check( WP_REST_Request $request ): bool|WP_Error
Checks if a request has access to read menus.
Parameters
$requestWP_REST_Request Required-
Full details about the request.
Return
bool|WP_Error True if the request has read access, otherwise false or WP_Error object.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php. View all references
public function get_items_permissions_check( $request ) {
$has_permission = parent::get_items_permissions_check( $request );
if ( true !== $has_permission ) {
return $has_permission;
}
return $this->check_has_read_only_access( $request );
}
Related
Uses
| Uses | Description |
|---|---|
| WP_REST_Menus_Controller::check_has_read_only_access() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Checks whether the current user has read permission for the endpoint. |
| WP_REST_Terms_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to read terms in the specified taxonomy. |
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_menus_controller/get_items_permissions_check