Skip to content

Instantly share code, notes, and snippets.

@gasatrya
Created July 16, 2013 03:44
Show Gist options
  • Save gasatrya/6005589 to your computer and use it in GitHub Desktop.
Save gasatrya/6005589 to your computer and use it in GitHub Desktop.
Replaces WordPress login header logo
<?php
add_action( 'login_head', 'namespace_login_style' );
/**
* Replaces the login header logo
*/
function namespace_login_style() {
echo '<style>.login h1 a { background-image: url( ' . get_template_directory_uri() . '/images/logo.png ) !important; }</style>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment