WP_REST_Global_Styles_Controller::check_read_permission( WP_Post $post ): bool
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
.
View all references
protected function check_read_permission( $post ) {
return current_user_can( 'read_post', $post->ID );
}
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |