Skip to content

Instantly share code, notes, and snippets.

View falahati's full-sized avatar
🥱
I may be slow to respond

Soroush falahati

🥱
I may be slow to respond
View GitHub Profile
@falahati
falahati / gist:8974e0bf0ae40448f352bad24aa74635
Created June 18, 2018 22:52 — forked from tobedoit/gist:4146942
Wordpress: remove the "Dashboard" and redirect for non-admin user
/* Remove the "Dashboard" from the admin menu for non-admin users **********************************
** http://wordpress.stackexchange.com/questions/52752/hide-dashboard-from-non-admin-users ******* */
/* !관리자 아닌 회원 알림판 제거 & 리다이렉트 *********************************************************** */
function custom_remove_dashboard () {
global $current_user, $menu, $submenu;
get_currentuserinfo();
if( ! in_array( 'administrator', $current_user->roles ) ) {
reset( $menu );
$page = key( $menu );