Notifications
Clear all
[Solved] How to change the default WordPress login page?
WordPress
1
Posts
2
Users
0
Reactions
36
Views
0
09/11/2025 10:56 am
Topic starter
Hi,
How can I replace the default WordPress homepage with a custom designed login page for my members?
Thank you,
Answer
Add a comment
Add a comment
Topic Tags
1 Answer
0
09/11/2025 11:00 am
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;
}
}
Add a comment
Add a comment