Skip to content

Instantly share code, notes, and snippets.

@alanef
Created June 26, 2020 09:29
Show Gist options
  • Select an option

  • Save alanef/9f1f9c8d75257ade49502db3c87ed33e to your computer and use it in GitHub Desktop.

Select an option

Save alanef/9f1f9c8d75257ade49502db3c87ed33e to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Allow Editor to Manage Options
Plugin URI: https://fullworks.net/
Description: Allow Editor manage_otption capabaility
Author: Alan
*/
add_action( 'init', function () {
$role = get_role( 'editor' );
$role->add_cap( 'manage_options' );
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment