自分用の忘備録

WordPress ログイン画面の画像とリンク先を変更する

2021.12.08

functions.php への追記で対応

/**
 * Login Log
 */
function theme_login_style() {
    ?>

    <style>
      .login h1 a {
        width: 320px!important;
        background: url(画像ファイルへのパス.jpg) no-repeat 46% 72%!important;
        background-size: 70%!important;
      }
    </style>
    <?php
}

/* Log Click toppage */
add_action('login_enqueue_scripts', 'theme_login_style');
function my_login_logo_url() {
    return home_url();
}