WP_REST_Icon_Collections_Controller::get_item_permissions_check( WP_REST_Request $request ): true|WP_Error

In this article

Checks if a given request has access to read a specific icon collection.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

true|WP_Error True if the request has read access for the item, WP_Error object otherwise.

Source

public function get_item_permissions_check( $request ) {
	$check = $this->get_items_permissions_check( $request );
	if ( is_wp_error( $check ) ) {
		return $check;
	}

	return true;
}

Changelog

VersionDescription
7.1.0Introduced.

User Contributed Notes

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