Remove users access to dashboard
Removing the dashboard: /* Remove the “Dashboard” from the admin menu for non-admin users */ function wpse54085_remove_dashboard () { global $current_user, $menu, $submenu; get_currentuserinfo(); if( ! in_array( ‘administrator’, $current_user->roles ) ) { reset( $menu ); $page = key( $menu ); while( ( __( ‘Dashboard’ ) != $menu[$page][0] ) && next( $menu ) ) { $page … Read more