• linhos

    (@linhos)


    Please, I’m using the code of auto login into my design, however it makes the notification emails fail to get to the admin and the User in question.

    Is there any way to use the auto login and continue to receive notification emails, take much for this to work, the code I’m using is below, accept any help or suggestion

    function auto_login_new_user( $user_id ) {

    wp_set_current_user($user_id);

    wp_set_auth_cookie($user_id);

    wp_new_user_notification($user_id, $plaintext_pass = ”);

    // You can change home_url() to the specific URL,such as

    wp_redirect( ‘https://oportunidadelitoral.com.br/?page_id=1598’ );

    wp_redirect( home_url(‘?page_id=1598’) );

    exit;

    }

    add_action( ‘user_register’, ‘auto_login_new_user’,11 );

  • The topic ‘Auto login with email notification on wordpress ??’ is closed to new replies.