Skip to content

Instantly share code, notes, and snippets.

@erikasarti
Created June 5, 2019 12:38
Show Gist options
  • Save erikasarti/f1d5889be576a29793f0dadce96eab5c to your computer and use it in GitHub Desktop.
Save erikasarti/f1d5889be576a29793f0dadce96eab5c to your computer and use it in GitHub Desktop.
Como personalizar a tela de login do WordPress
// 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