Skip to content

Instantly share code, notes, and snippets.

@takien
Created June 3, 2023 01:28
Show Gist options
  • Save takien/a2a7bc76805db83d9d6a688b4b289329 to your computer and use it in GitHub Desktop.
Save takien/a2a7bc76805db83d9d6a688b4b289329 to your computer and use it in GitHub Desktop.
WordPress custom login Logo
<?php
function custom_loginlogo() {
echo '<style type="text/css">
.login h1 a {background-image: url('.wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), 'large', false )[0]
.') !important;
pointer-events: none;
background-size: contain;
height: 100px;
font-size: inherit;
width: auto;
}
</style>';
}
add_action('login_head', 'custom_loginlogo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment