Created
July 20, 2013 11:44
-
-
Save rickrduncan/6044748 to your computer and use it in GitHub Desktop.
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
<?php | |
//-> Do NOT include the opening php tag | |
// Custom admin dashboard header logo | |
add_action('admin_head', 'rvam_custom_admin_logo'); | |
function rvam_custom_admin_logo() { | |
echo '<style type="text/css">#icon-index { background-image: url('.get_stylesheet_directory_uri().'/images/logo-dashboard.png) !important; background-position: 0 0;}</style>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment