Created
June 5, 2019 12:38
-
-
Save erikasarti/f1d5889be576a29793f0dadce96eab5c to your computer and use it in GitHub Desktop.
Como personalizar a tela de login do WordPress
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
// Muda o logotipo na tela de login do painel administrativo | |
function my_custom_login_logo() { | |
echo ' | |
<style type="text/css"> | |
.login h1 a { | |
background-image:url('.get_bloginfo('template_directory').'/login.png) !important; | |
background-size: 300px 150px; | |
height: 150px;} | |
</style>'; | |
} | |
add_action('login_head', 'my_custom_login_logo'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment