Last active
September 9, 2017 19:43
-
-
Save alandbh/1aeaa28b40b8f3fbef2a to your computer and use it in GitHub Desktop.
Altera a logo / logotipo na tela de login
This file contains 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
/* ---------------- | |
Altera a logo na tela de login | |
Alan | |
----------------- */ | |
add_action( 'login_head', 'custom_login_logo' ); | |
function custom_login_logo() { | |
$logo = 'logo-login.png'; | |
if(!is_null($logo)) { | |
echo '<style type="text/css"> | |
h1 a { | |
width: 342px !important; | |
height: 48px !important; | |
background-size: 342px 48px !important; | |
background-image:url('.get_template_directory_uri().'/images/'.$logo.') !important; } | |
</style>'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment