테마 편집
Twenty Seventeen: 테마 기능 (functions.php)
678 줄부터
function my_login_redirect( $redirect_to, $request, $user ) {
//is there a user to check?
global $user;
if ( isset( $user->roles ) && is_array( $user->roles ) ) {
//check for admins
if ( in_array( 'administrator', $user->roles ) ) {
// redirect them to the default place
return $redirect_to;
} else {
return home_url();
}
} else {
return $redirect_to;
}
}
add_filter( 'login_redirect', 'my_login_redirect', 10, 3 );
'IT' 카테고리의 다른 글
Nginx Server Certbot Renew 날짜 (0) | 2021.07.27 |
---|---|
우분투 폴더 크기 보기 (0) | 2021.07.27 |
chmod 자꾸 변경되네. (0) | 2021.07.27 |
Nextcloud 22, Wordpress 5.8, Phpmyadmin, Plexmedia on Ubuntu 20.04 성공 (0) | 2021.07.27 |
Nextcloud Data Directory 이동 (0) | 2021.07.27 |