Not all capabilities are visible in the tab corresponding to a custom post type
Closed this issue · 2 comments
fschroiff commented
This is in the tab for my "Jobs" custom post type.
This is visible when I select the "All" tab.
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.
justintadlock commented
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.
fschroiff commented
Thank you for your comment! Helped me gain more insight. Also made me find your blog post about this subject from 2010. 👌🏻