Skip to content

Instantly share code, notes, and snippets.

@alandbh
Last active September 9, 2017 19:43
Show Gist options
  • Save alandbh/1aeaa28b40b8f3fbef2a to your computer and use it in GitHub Desktop.
Save alandbh/1aeaa28b40b8f3fbef2a to your computer and use it in GitHub Desktop.
Altera a logo / logotipo na tela de login
/* ----------------
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