Skip to content

Instantly share code, notes, and snippets.

@harisrozak
Last active August 29, 2015 14:06
Show Gist options
  • Save harisrozak/d26a50009914df2df9fc to your computer and use it in GitHub Desktop.
Save harisrozak/d26a50009914df2df9fc to your computer and use it in GitHub Desktop.
WordPress :: enable another admin level to save the custom options
<?php
// editor level
$editor = get_role('editor');
$editor->add_cap('edit_theme_options');
register_setting('opt-group', 'opt_1');
register_setting('opt-group', 'opt_2');
add_filter('option_page_capability_opt-group', 'opt_group_editor_save_options');
function opt_group_editor_save_options($cap) {
return 'edit_theme_options';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment