Skip to content

Instantly share code, notes, and snippets.

@sebastienserre
Created December 27, 2015 17:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sebastienserre/f0c354a08cea8b2bb4d5 to your computer and use it in GitHub Desktop.
Save sebastienserre/f0c354a08cea8b2bb4d5 to your computer and use it in GitHub Desktop.
Snippet for WP functions.php
<?php
// add a favicon
function favicon_link() {
echo '<link rel="shortcut icon" type="image/x-icon" href="http://www.thivinfo.com/wp-content/themes/thivinfo_v3/favicon.ico" />' . "\n";
}
add_action( 'wp_head', 'favicon_link' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment