Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickgilmour/2b24177adebc6118f665 to your computer and use it in GitHub Desktop.
Save patrickgilmour/2b24177adebc6118f665 to your computer and use it in GitHub Desktop.
Remove WooCommerce Admin Menu for everyone except Administrators
<?php
/**
* Remove the WooCommerce admin menu for everyone except WordPress Administrators
*
*/
add_action( 'admin_menu', 'remove_menus' );
function remove_menus(){
// If the current user is not an admin
if ( !current_user_can('manage_options') ) {
remove_menu_page( 'woocommerce' ); // WooCommerce admin menu slug
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment