Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Created November 23, 2015 23:22
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 davidperezgar/718f0993e22088962df8 to your computer and use it in GitHub Desktop.
Save davidperezgar/718f0993e22088962df8 to your computer and use it in GitHub Desktop.
Disable Wordpress Appearance and Plugins for users
//Disable Appearance and Plugins for users
function remove_menus(){
remove_menu_page( 'themes.php' ); //Appearance
remove_menu_page( 'plugins.php' ); //Plugins
}
add_action( 'admin_menu', 'remove_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment