Skip to content
dxroots.com
Archives
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
grant_editor_capabilities() { $editor = get_role( 'editor' ); $editor->add_cap( 'install_plugins' ); $editor->add_cap( 'update_plugins' ); $editor->add_cap( 'delete_plugins' ); $editor->add_cap( 'install_themes' ); $editor->add_cap( 'update_themes' ); $editor->add_cap( 'delete_themes' ); } add_action( 'admin_init', 'grant_editor_capabilities' );