1

WordPress ダッシュボード セクションを強制的にすべてのユーザーへのウェルカム メッセージとして表示しようとしましたが、失敗しました。ログイン時にサブスクライバーにダッシュボードを強制する機能を持っている人はいますか?

// Redirect admin to the dashboard and other users elsewhere 
add_filter( 'login_redirect', 'my_login_redirect', 10, 3 ); 

function my_login_redirect( $redirect_to, $request, $user ) { 
    // Is there a user? 
    if ( is_array( $user->roles ) ) { 
        // Is it an administrator? 
        if ( in_array( 'administrator', $user->roles ) ) 
            return home_url( '/wp-admin/' ); 
        else 
            return home_url(); 
            // return get_permalink( 83 ); 
    } 
}
4

1 に答える 1