有各种各样的插件可以让你做到这一点。只需在插件搜索中搜索“login”。
但是,如果您想自己使用子主题中的代码来实现这一点,您可以直接使用以下代码WordPress Codex page on Customizing the Login Form:
function my_login_logo() { ?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);
height:65px;
width:320px;
background-size: 320px 65px;
background-repeat: no-repeat;
padding-bottom: 30px;
}
</style>
<?php }
add_action( \'login_enqueue_scripts\', \'my_login_logo\' );
您还可以在上面的代码中添加其他自定义CSS,通过针对
<body>
CSS中的HTML标记