Last active
April 18, 2017 16:21
-
-
Save fernandiez/184ec35d3dc83c37f5c305151b99c1e9 to your computer and use it in GitHub Desktop.
Customize WordPress login logo image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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