Change WordPress login page
-
I want to replace the standard WordPress login page with one that I made myself. Can I just use the following code as PHP snippet in WP Code?
function my_login_page( $login_url) {
return ( ‘YOUR_URL_HERE’ );
}add_filter( ‘login_url’, ‘my_login_page’, 10 );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Change WordPress login page’ is closed to new replies.