Skip to content

Instantly share code, notes, and snippets.

@baerkins
Forked from emaildano/wp-favicon.php
Created April 16, 2014 19:52
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 baerkins/10926140 to your computer and use it in GitHub Desktop.
Save baerkins/10926140 to your computer and use it in GitHub Desktop.
// Add Favicon
function favicon() {
echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_template_directory_uri().'/assets/favicon/favicon.ico" />';
}
add_action('wp_head', 'favicon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment