将仪表板登录上的默认WordPress图像更改为自定义图像

时间:2016-05-06 作者:Enitan Bello

如何将仪表板登录上的默认WordPress图像更改为自定义图像?

enter image description here

1 个回复
SO网友:Storm Rockwell

您可以将图像上载到主题,并将其添加到功能中:

add_action("login_head", "my_login_head");
function my_login_head() {
    echo "
    <style>
    body.login #login h1 a {
        background: url(\'".get_bloginfo(\'template_url\')."/path to your image/logo-login.gif\') no-repeat scroll center top transparent;
        height: 90px;
        width: 400px;
    }
    </style>
    ";
}
资料来源:https://wordpress.org/support/topic/change-login-picture