Skip to content

Instantly share code, notes, and snippets.

@tobedoit
Created November 26, 2012 07:03
Show Gist options
  • Save tobedoit/4146952 to your computer and use it in GitHub Desktop.
Save tobedoit/4146952 to your computer and use it in GitHub Desktop.
Wordpress: remove 'media' and 'tool' menu
/* Remove 'Media' and 'Tool' menus for non admin users *******************************************
** http://www.instantshift.com/2012/03/06/21-most-useful-wordpress-admin-page-hacks/ ********** */
/* !관리자외 미디어 메뉴 삭제 ********************************************************************** */
add_action( 'admin_menu', 'remove_links_menu' );
function remove_links_menu() {
//if (!current_user_can('manage_options')) { // if user is below Administrator level
remove_menu_page('upload.php'); // Media
remove_menu_page('tools.php'); // Tools
remove_menu_page('link-manager.php'); // Tools
//}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment