Skip to content

Instantly share code, notes, and snippets.

@bewho
Forked from sebastienserre/functions.php
Created December 20, 2018 09:58
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 bewho/7431c39e90b12df7649a1087fada9c05 to your computer and use it in GitHub Desktop.
Save bewho/7431c39e90b12df7649a1087fada9c05 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