Created
May 21, 2025 06:46
-
-
Save DeveloperWil/710daf0736c1a265b78597ba1a871239 to your computer and use it in GitHub Desktop.
Client WP Dashboard Makeover Blueprint - Branded Login Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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