Skip to content

Instantly share code, notes, and snippets.

@nash-ye
Created November 3, 2020 11:00
Show Gist options
  • Save nash-ye/a2b7e40eca0bbe4a0712bcae3d062bb9 to your computer and use it in GitHub Desktop.
Save nash-ye/a2b7e40eca0bbe4a0712bcae3d062bb9 to your computer and use it in GitHub Desktop.
Fixing WordPress Attachment Capabilities
<?php
add_filter(
'register_post_type_args',
function ($args, $postType) {
if ('attachment' === $postType) {
$args['capabilities']['edit_posts']   = 'upload_files';
$args['capabilities']['upload_files'] = 'upload_files';
}
return $args;
},
15,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment