Are you looking for a way to allow users with editor user role to edit any widget or menu? While there’s probably a plugin for this, we have created a quick code snippet that you can use to change role access to menus and widgets in WordPress.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
// get the the role object $role_object = get_role('editor'); // add $cap capability to this role object $role_object->add_cap('edit_theme_options');
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 28 best WordPress resume themes to create best impression and how to create a contact form in WordPress.
This approach has two problems: (1) It allows the editor to have access to all theme (Appearance) options, not just widgets and menus. (2) This code only needs to be run once; it doesn’t need to be run every time WordPress runs.
Consider using this free plugin instead: Editor Menu-and-Widget-Access (I haven’t tried it but it seems to have good reviews.)