以下をfunctions.phpに入れる。Your Logo HereとYour URL Hereに関しては自分のものに置き換える。
function custom_login_logo() {
echo '<style type="text/css">
.login h1 a {
background-image: url(https://example.com/wp-content/uploads/avatar.png) ; // Your Logo Here
background-position: center center;
background-size: contain;
width: 100%;
}
</style>';
}
add_action('login_head', 'custom_login_logo');
function login_url(){
return "https://example.com"; // Your URL Here
}
add_filter('login_headerurl', 'login_url');
コメントを残す