Skip to content

Instantly share code, notes, and snippets.

@roose
Created February 28, 2012 15:24
Show Gist options
  • Select an option

  • Save roose/1933115 to your computer and use it in GitHub Desktop.

Select an option

Save roose/1933115 to your computer and use it in GitHub Desktop.
Change Wordpress login page logo&link
<?php
add_action( 'login_head', 'ilc_custom_login');
function ilc_custom_login() {
echo '<style type="text/css">
h1 a { background-image:url('. get_stylesheet_directory_uri() . '/images/logo2.png' . ') !important; margin-bottom: 10px; }
padding: 20px;}
</style>
<script type="text/javascript">window.onload = function(){document.getElementById("login").getElementsByTagName("a")[0].href = "'. home_url() . '";document.getElementById("login").getElementsByTagName("a")[0].title = "Go to site";}</script>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment