Summery Summery
Checks if a post can be edited.
Syntax Syntax
Parameters Parameters
- $post
-
(Required) Post object.
Return Return
(bool) Whether the post can be edited.
Source Source
File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
protected function check_update_permission( $post ) { $post_type = get_post_type_object( $post->post_type ); if ( ! $this->check_is_post_type_allowed( $post_type ) ) { return false; } return current_user_can( 'edit_post', $post->ID ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |