Skip to content

Instantly share code, notes, and snippets.

@mannieschumpert
Created October 28, 2013 16:29
Show Gist options
  • Save mannieschumpert/7200062 to your computer and use it in GitHub Desktop.
Save mannieschumpert/7200062 to your computer and use it in GitHub Desktop.
A quick filter to allow the editor role to edit theme options.
<?php
/**
* Allow editor role to edit theme options
*/
add_filter('user_has_cap',
function( $caps ){
if (! empty( $caps['edit_pages'] ) )
$caps['edit_theme_options'] = true;
return $caps;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment