株式会社AZU (アズ) | 長野市のWEBシステム・業務システム・WEBサイト制作会社

+ MENU

「パスワードをお忘れですか ?」非表示

ログインページの「パスワードをお忘れですか ?」を非表示にする。

functions.php
に以下を追加する。

add_action('login_enqueue_scripts', 'custom_login');

function custom_login() {
    $style = "";
    $style .= "<style type=\"text/css\">";
    $style .= "#login #nav, #login #login_error a { display: none; }";
    $style .= "</style>";
    $style .= "\n";
    echo $style;
}

[2017/12/14]
このエントリーをはてなブックマークに追加