Created
April 6, 2014 10:32
-
-
Save jbutko/10004248 to your computer and use it in GitHub Desktop.
WP, wp-admin: Add admin favicon
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
function pa_admin_area_favicon() { | |
echo '<link rel="shortcut icon" href="http://cdn.alex.leonard.ie/favicon.ico" />'; | |
} | |
add_action('admin_head', 'pa_admin_area_favicon'); | |
// From http://alex.leonard.ie/2012/05/24/wordpress-admin-area-favicon/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment