Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Created January 18, 2023 12:24
Show Gist options
  • Save jjmontalban/14e93348401a227d271b72a314947613 to your computer and use it in GitHub Desktop.
Save jjmontalban/14e93348401a227d271b72a314947613 to your computer and use it in GitHub Desktop.
Hide snippets no admin users
/**
* @snippet Hide snippets no admin users
* @author JJMontalban
*/
function remove_snippets_admin_menu() {
if( !current_user_can('administrator') ){
remove_menu_page('snippets'); //CODE SNIPPETS
}
remove_menu_page('activity_log_page');
}
add_action('admin_menu', 'remove_snippets_admin_menu', 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment