WP_REST_Attachments_Controller::post_process_item_permissions_check()publicWP 5.3.0

Checks if a given request can perform post processing on an attachment.

Method of the class: WP_REST_Attachments_Controller{}

No Hooks.

Return

true|WP_Error. True if the request has access to update the item, WP_Error object otherwise.

Usage

$WP_REST_Attachments_Controller = new WP_REST_Attachments_Controller();
$WP_REST_Attachments_Controller->post_process_item_permissions_check( $request );
$request(WP_REST_Request) (required)
Full details about the request.

Changelog

Since 5.3.0 Introduced.

WP_REST_Attachments_Controller::post_process_item_permissions_check() code WP 6.5.2

public function post_process_item_permissions_check( $request ) {
	return $this->update_item_permissions_check( $request );
}