Skip to content

Instantly share code, notes, and snippets.

View benjino's full-sized avatar

Ben Siegfried benjino

View GitHub Profile
@benjino
benjino / gist:6050691
Last active December 20, 2015 01:39 — forked from rossteasley/gist:3058013
// 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');