FREE Website Analysis Click Here!

How to change the d...
 
Notifications
Clear all

[Solved] How to change the default WordPress login page?

1 Posts
2 Users
0 Reactions
36 Views
0
Topic starter

Hi,

How can I replace the default WordPress homepage with a custom designed login page for my members?

Thank you,


1 Answer
0

Hi,

Simply add the code below to your child theme. Please remember to replace the login URL with your own.

/// Redirect Default WordPress Login Page
add_action( 'login_init', 'user_registration_login_init' );
function user_registration_login_init () {
if( ! is_user_logged_in() ) {
wp_redirect( '/login', 301 );
exit;
}
}