WP_REST_Posts_Controller::check_delete_permission( WP_Post $post ): bool

In this article

Checks if a post can be deleted.

Parameters

$postWP_Postrequired
Post object.

Return

bool Whether the post can be deleted.

Source

protected function check_delete_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( 'delete_post', $post->ID );
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.