Skip to content

Instantly share code, notes, and snippets.

@DeveloperWil
Created May 21, 2025 06:46
Show Gist options
  • Save DeveloperWil/710daf0736c1a265b78597ba1a871239 to your computer and use it in GitHub Desktop.
Save DeveloperWil/710daf0736c1a265b78597ba1a871239 to your computer and use it in GitHub Desktop.
Client WP Dashboard Makeover Blueprint - Branded Login Screen
function my_login_logo() {
echo '<style>.login h1 a {
background-image: url(/path/to/logo.png);
background-size: contain;
width: 100%;
}</style>';
}
add_action('login_enqueue_scripts', 'my_login_logo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment