Skip to content

Instantly share code, notes, and snippets.

@lepittenger
Created February 22, 2016 23:06
Show Gist options
  • Save lepittenger/b25201fbbc7d22ef512a to your computer and use it in GitHub Desktop.
Save lepittenger/b25201fbbc7d22ef512a to your computer and use it in GitHub Desktop.
favicon for WordPress admin dashboard
// 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