Skip to content

Instantly share code, notes, and snippets.

@ncyhere
Created October 9, 2019 10:16
Show Gist options
  • Save ncyhere/bbff723ad850ccba9c5b2eb840350646 to your computer and use it in GitHub Desktop.
Save ncyhere/bbff723ad850ccba9c5b2eb840350646 to your computer and use it in GitHub Desktop.
Change WordPress Login logo
<?php
function ncydesign_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url(https://ncy.local/wp-content/uploads/2019/10/letter-n.png) !important; }
</style>';
}
add_action('login_head', 'ncydesign_custom_login_logo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment