Skip to content

Instantly share code, notes, and snippets.

@fernandiez
Last active April 18, 2017 16:21
Show Gist options
  • Save fernandiez/184ec35d3dc83c37f5c305151b99c1e9 to your computer and use it in GitHub Desktop.
Save fernandiez/184ec35d3dc83c37f5c305151b99c1e9 to your computer and use it in GitHub Desktop.
Customize WordPress login logo image
// Customize WordPress login logo image
function my_login_logo() { ?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url('<?php echo get_stylesheet_directory_uri();?>/screenshot.png') !important;
width: 320px !important;
height: 240px !important;
background-size: 320px 240px !important;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment