我刚刚将id(#login h1 a)添加到函数中,效果很好。
function my_login_logo() { ?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/login-logo_320px.png);
padding-bottom: 30px;background-size:160px 160px;width:160px;height:160px;
}
.login form {
background: #f1f1f1 none repeat scroll 0 0;
border: 1px solid rgba(14, 118, 188, 0.5);
box-shadow: 0 0 0 rgba(0, 0, 0, 0.13);
}
</style>
<?php }
add_action( \'login_enqueue_scripts\', \'my_login_logo\' );