Skip to content

Instantly share code, notes, and snippets.

@sp4r74cus
Last active November 30, 2017 11:58
Show Gist options
  • Save sp4r74cus/2421677 to your computer and use it in GitHub Desktop.
Save sp4r74cus/2421677 to your computer and use it in GitHub Desktop.
Change WordPress Logo in Login Page
// change login page logo image
function my_login_head() {
?>
<style>
body.login #login h1 a {
background: url(<?= get_bloginfo('template_url'); ?>/images/logo.png) no-repeat scroll center top transparent;
height: 60px;
width: 330px;
}
</style>
<?php
}
add_action("login_head", "my_login_head");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment