WP_REST_Blocks_Controller::check_read_permission( object $post )

Checks if a block can be read.


Description Description


Parameters Parameters

$post

(object) (Required) Post object that backs the block.


Top ↑

Return Return

(bool) Whether the block can be read.


Top ↑

Source Source

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

	public function check_read_permission( $post ) {
		// Ensure that the user is logged in and has the read_blocks capability.
		$post_type = get_post_type_object( $post->post_type );
		if ( ! current_user_can( $post_type->cap->read_post, $post->ID ) ) {
			return false;
		}

		return parent::check_read_permission( $post );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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