Skip to content

Instantly share code, notes, and snippets.

@trentsnippets
Created September 6, 2013 03:40
Show Gist options
  • Save trentsnippets/6459226 to your computer and use it in GitHub Desktop.
Save trentsnippets/6459226 to your computer and use it in GitHub Desktop.
Add a custom logo to the login screen for wordpress.
/**
* Custom admin login header link
*/
function custom_login_url() {
return home_url( '/' );
}
add_filter( 'login_headerurl', 'custom_login_url' );
/**
* Custom admin login header link alt text
*/
function custom_login_title() {
return get_option( 'blogname' );
}
add_filter( 'login_headertitle', 'custom_login_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment