Skip to content

Instantly share code, notes, and snippets.

@chetansatasiya
Created June 19, 2017 11:13
Show Gist options
  • Select an option

  • Save chetansatasiya/fd2e5884f5026115d03af1052b61461c to your computer and use it in GitHub Desktop.

Select an option

Save chetansatasiya/fd2e5884f5026115d03af1052b61461c to your computer and use it in GitHub Desktop.
How to Change the Login Logo in WordPress
<?php
function custom_loginlogo() {
echo '<style type="text/css">h1 a {background-image: url('.get_bloginfo('template_directory').'/images/login_logo.png) !important; }
</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