Created
May 19, 2012 22:17
-
-
Save jordanboston/2732561 to your computer and use it in GitHub Desktop.
change WP login logo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** change admin login logo **/ | |
function custom_loginlogo() { | |
echo '<style type="text/css"> | |
body.login div#login h1 a {background-image: url('.get_bloginfo('home').'/wp-content/themes/the-theme/images/admin-logo.png) !important; } | |
</style>'; | |
} | |
add_action('login_head', 'custom_loginlogo'); | |
/* -- changes the url of login logo -- */ | |
function my_login_logo_url() { | |
return get_bloginfo( 'url' ); | |
} | |
add_filter( 'login_headerurl', 'my_login_logo_url' ); | |
function my_login_logo_url_title() { | |
return 'the site name'; | |
} | |
add_filter( 'login_headertitle', 'my_login_logo_url_title' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment