Skip to content

Instantly share code, notes, and snippets.

@chrismademe
Created March 4, 2020 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismademe/bc8f93d61b28237194798ff07bd9ad89 to your computer and use it in GitHub Desktop.
Save chrismademe/bc8f93d61b28237194798ff07bd9ad89 to your computer and use it in GitHub Desktop.
WordPress: Give Editor role access to the Appearance menu
<?php
add_action( 'init', function() {
$role = get_role('editor');
$role->add_cap('edit_theme_options');
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment