Hi,
my goal is to give access to Editors users, so they can also configure the slideshow.
I've had a customized menu to link to the slideshow which editors have access:
add_menu_page('slideshow', 'Slideshow', 'edit_posts', 'wp_skitter_menu','wp_skitter_menu_function','','5');
They see the slideshow configs, but they can't save any change.
So, how can I give access to them WITHOUT giving them "manage_options" capability. (that's not a solution in my case)
$role = get_role('editor');
$role->add_cap('manage_options');
Thanks for the help.