Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/88c4960bd6f064a19d39 to your computer and use it in GitHub Desktop.
Save schalkburger/88c4960bd6f064a19d39 to your computer and use it in GitHub Desktop.
Add favicon to Wordpress
function add_favicon() { ?>
<link rel="icon" href="<?php echo bloginfo('stylesheet_directory') ?>/images/favicon.ico" />
<?php }
add_action('wp_head', 'add_favicon');
@schalkburger
Copy link
Author

rel="shortcut icon" considered harmful - https://mathiasbynens.be/notes/rel-shortcut-icon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment