/* -----------------------------------------------------------
Add these code to functions.php
-----------------------------------------------------------
/*Changes the main Login page url link*/
function wp_login_page_URL( $url ) {
$url = home_url( '/' );
return $url;
}
add_filter( 'login_headerurl', 'wp_login_page_URL' );
-----------------------------------------------------------
/*Replaces the default WordPress Logo*/
function add_logo_Login_page() {
echo '<style>.login h1 a {
background-repeat: no-repeat;
background-image: url(https://yourimagelink);
background-position: center center;
background-size: contain !important;
width: 100% !important;
}
</style>';
}
add_action( 'login_head', 'add_logo_Login_page' ); */
WordPress login page: Change the default WP logo and link | 2024
Share