Created
February 14, 2014 21:28
-
-
Save emaildano/9009701 to your computer and use it in GitHub Desktop.
Wordpress function for custom favicon.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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