Answers for "how to redirect login page in wordpress"

PHP
0

wordpress logout redirect to home

// On functions.php of your child theme or in a code snippet:
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
  wp_redirect( home_url() );
  exit();
}
Posted by: Guest on July-15-2021
0

redirect wordpress core login

add_action(  'login_init', 'user_registration_login_init'  );
function user_registration_login_init () {
     if( ! is_user_logged_in() ) {
        wp_redirect( '/my-account' );
        exit;
      }
}
Posted by: Guest on December-27-2021

Code answers related to "how to redirect login page in wordpress"

Browse Popular Code Answers by Language