WP_REST_Global_Styles_Controller::check_read_permission() WordPress Method
The WP_REST_Global_Styles_Controller::check_read_permission() method is used to check if the current user can read global styles. This is determined by whether the user has the 'edit_theme_options' capability. If the user does not have this capability, they will not be able to view global styles.
WP_REST_Global_Styles_Controller::check_read_permission( WP_Post $post ) #
Checks if a global style can be read.
Parameters
- $post
(WP_Post)(Required)Post object.
Return
(bool) Whether the post can be read.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php
protected function check_read_permission( $post ) { return current_user_can( 'read_post', $post->ID ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |