WP_REST_Attachments_Controller::post_process_item_permissions_check
Checks if a given request can perform post-processing on an attachment.
Method of the class: WP_REST_Attachments_Controller{}
No Hooks.
Returns
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() WP REST Attachments Controller::post process item permissions check code WP 7.0
public function post_process_item_permissions_check( $request ) {
return $this->update_item_permissions_check( $request );
}