Last active
August 29, 2015 14:06
-
-
Save harisrozak/d26a50009914df2df9fc to your computer and use it in GitHub Desktop.
WordPress :: enable another admin level to save the custom options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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