justintadlock/members

Not all capabilities are visible in the tab corresponding to a custom post type

Closed this issue · 2 comments

This is in the tab for my "Jobs" custom post type.
screen shot 2017-11-08 at 12 01 07

This is visible when I select the "All" tab.
screen shot 2017-11-08 at 12 00 53

This is how I add the caps in register_post_type:

      'capabilities' => [
        'edit_post'          => 'edit_job',
        'delete_post'        => 'delete_job',
        'edit_posts'         => 'edit_jobs',
        'edit_others_posts'  => 'edit_others_jobs',
        'publish_posts'      => 'publish_jobs',
        'read_private_posts' => 'read_private_jobs',
        'create_posts'       => 'create_jobs',
      ],

I'd expect all of those to appear under the "Vacatures" tab.

edit_job is a meta capability and should not be assigned to a role. Only primitive caps should be assigned to roles. Therefore, Members does not list meta caps by post type.

The reason it's even listed under the "All" tab is simply because it has been assigned to a role.

This is working as intended.

Thank you for your comment! Helped me gain more insight. Also made me find your blog post about this subject from 2010. 👌🏻