// CUSTOM ADMIN LOGIN HEADER LOGO
function my_custom_login_logo()
{
echo ‘<style type=”text/css”> h1 a { background-image:url(‘. stripslashes(get_option(‘we_logos’)).’) !important;background-size: 309px 70px !important;
height: 70px !important;
width: 309px !important;
} </style>’;
}
add_action(‘login_head’, ‘my_custom_login_logo’);
// CUSTOM ADMIN LOGIN LOGO LINK
// changing the logo link from wordpress.org to your site
function my_login_url() { return get_home_url(); }
// changing the alt text on the logo to show your site name
function my_login_title() { return get_option(‘blogname’); }
// calling it only on the login page
add_filter(‘login_headerurl’, ‘my_login_url’);
add_filter(‘login_headertitle’, ‘my_login_title’);