Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created June 9, 2016 14:52
Show Gist options
  • Save kovshenin/a0e010f90b3c4a834dc17881b2639f54 to your computer and use it in GitHub Desktop.
Save kovshenin/a0e010f90b3c4a834dc17881b2639f54 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'map_meta_cap', function( $caps, $cap ) {
if ( $cap == 'edit_my_plugin_options' ) {
$c = is_multisite() ? 'manage_site_options' : 'manage_options';
$caps = array( $c );
}
return $caps;
}, 10, 2 );
if ( current_user_can( 'edit_my_plugin_options' ) ) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment