Using the following snippet, you will be able to have custom favicon for your WP-admin.
1 2 3 4 | function admin_favicon() { echo '<link rel="shortcut icon" type="image/x-icon" href="' . get_bloginfo('template_directory') . '/images/favicon.ico" />'; } add_action( 'admin_head', 'admin_favicon' ); |
Snippet Source/Credit: Snipplr