Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Created February 22, 2023 10:54
Show Gist options
  • Save gmmedia/fbb88f3c60d39ada86b0eb298c9c35f1 to your computer and use it in GitHub Desktop.
Save gmmedia/fbb88f3c60d39ada86b0eb298c9c35f1 to your computer and use it in GitHub Desktop.
Add a Logo to the WordPress Login
<?php
// Add a Logo to the WordPress Login
add_action('login_head', 'bloggerpilot_loginlogo');
function bloggerpilot_loginlogo() {
echo '<style type="text/css">
h1 a {
background-image: url(https://bloggerpilot.com/wp-content/uploads/2021/06/logo.svg) !important;
width: 200px !important;
height: 42px !important;
background-size: 200px !important;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment