Skip to content

Instantly share code, notes, and snippets.

@mdemrs
Created March 9, 2015 16:30
Show Gist options
  • Save mdemrs/421efb02c84808fa5e1b to your computer and use it in GitHub Desktop.
Save mdemrs/421efb02c84808fa5e1b to your computer and use it in GitHub Desktop.
wp: Favicon in Wordpress admin
// Favicon in wordpress admin
function wpc_admin_favicon(){
echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_stylesheet_directory_uri().'/img/favicon.ico" />';
}
add_action('admin_head', 'wpc_admin_favicon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment