WP_REST_Global_Styles_Controller::check_update_permission()
Checks if a global style can be edited.
Method of the class: WP_REST_Global_Styles_Controller{}
No Hooks.
Return
true|false
. Whether the post can be edited.
Usage
// protected - for code of main (parent) or child class $result = $this->check_update_permission( $post );
- $post(WP_Post) (required)
- Post object.
Changelog
Since 5.9.0 | Introduced. |
WP_REST_Global_Styles_Controller::check_update_permission() WP REST Global Styles Controller::check update permission code WP 6.3
protected function check_update_permission( $post ) { return current_user_can( 'edit_post', $post->ID ); }