メニュー 閉じる

WPログイン画面のロゴをオリジナルに変更

functions.php へ
下記を追加
画像サイズは250px×250pxでOK

/* -------------------------------------------------------------
ログイン画面のロゴ変更
-------------------------------------------------------------- */
function login_logo() {
echo '<style type="text/css">
.login h1 a {
background-image: url(/img/wp_logo.png);
width: 250px;
height: 250px;
background-size: 200px 200px;
background-position: center top;
}
</style>';
}
add_action('login_head', 'login_logo');