auth_redirect

auth_redirect

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('auth_redirect') is found 1 times:

  • /wp-includes/pluggable.php line 1221
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    * @since 2.8.0
     *
     * @param int $user_id User ID.
     */
    do_action( 'auth_redirect', $user_id );
     
    // If the user wants ssl but the session is not ssl, redirect.
    if ( ! $secure && get_user_option( 'use_ssl', $user_id ) && str_contains( $_SERVER['REQUEST_URI'], 'wp-admin' ) ) {
        if ( str_starts_with( $_SERVER['REQUEST_URI'], 'http' ) ) {
            wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
            exit;