Created
February 22, 2016 23:06
-
-
Save lepittenger/b25201fbbc7d22ef512a to your computer and use it in GitHub Desktop.
favicon for WordPress admin dashboard
This file contains hidden or 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
// favicon for admin dashboard | |
function admin_favicon() { | |
echo '<link rel="Shortcut Icon" type="image/x-icon" href="' . get_bloginfo( 'stylesheet_directory' ) . '/images/favicon-admin.ico" />'; | |
} | |
add_action( 'admin_head', 'admin_favicon' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment