This file contains 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
// changing the login page logo | |
function rgt_custom_dashboard_logo(){ | |
echo '<style type="text/css"> | |
h1 a { | |
background-image:url('.get_stylesheet_directory_uri().'/images/put-your-logo-filename-here.gif) !important; | |
} | |
</style>'; | |
} | |
add_action('login_head', 'rgt_custom_dashboard_logo'); |