W3cubDocs

/WordPress

WP_REST_Posts_Controller::check_create_permission( WP_Post $post )

Checks if a post can be created.

Parameters

$post

(WP_Post) (Required) Post object.

Return

(bool) Whether the post can be created.

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php

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 );
	}

Changelog

Version Description
4.7.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_posts_controller/check_create_permission