WP_REST_Posts_Controller::check_create_permission() protected WP 4.7.0
Checks if a post can be created.
{} It's a method of the class: WP_REST_Posts_Controller{}
No Hooks.
Return
true/false. Whether the post can be created.
Usage
// protected - for code of main (parent) or child class $result = $this->check_create_permission( $post );
- $post(WP_Post) (required)
- Post object.
Changelog
Since 4.7.0 | Introduced. |
Code of WP_REST_Posts_Controller::check_create_permission() WP REST Posts Controller::check create permission WP 5.6
protected function check_create_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( $post_type->cap->create_posts );
}