我刚刚升级到wordpress 4.5,现在我为管理员定制的徽标不起作用,我构建的主题在主题功能中使用了以下内容。php:
/* change admin logo */
function my_login_logo() { ?>
<style type="text/css">
.login h1 a {
background-image: url(<?php echo get_field(\'logo\',\'options\'); ?>);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
width: 320px !important;
height: 99px !important;
margin-bottom: 20px !important;
}
.login form {
margin-top: 0px;
}
</style>
<?php }
add_action( \'login_enqueue_scripts\', \'my_login_logo\' );
我找不到这方面的工作,有人能帮忙吗?