I created a wordpress custom user with his capabilities: this user can only read, edit and delete posts of a custom post type ( called recipe ).
I give to this user the role to upload file, because when user write a recipe post can add media to his article.
Upload file work fine in media manager ( not in media iframe, because the conditions in order to edit attachments is have the edit_post role ). In fact, this user with custom roles cannot edit and delete attachments ( i cannot give him the edit_posts and delete_posts roles because in this site there are a lot of other custom post type managed by site administrator
I know that attachment are post post_type, but how can i assign the capabilities to edit and delete his media?
Searching i found this hack to change default capabilities of attachments, but i don't think it's the right way
global $wp_post_types;
$wp_post_types['attachment']->cap->edit_post = 'upload_files';
$wp_post_types['attachment']->cap->read_post = 'upload_files';
$wp_post_types['attachment']->cap->delete_post = 'upload_files';
Thank in advance