Created
March 30, 2017 11:23
-
-
Save ScarletPonytail/b0d04f574f9c6371aba290b4ff204a96 to your computer and use it in GitHub Desktop.
WordPress - Add Favicon to functions.php
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 vinx_favicon() { | |
echo '<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />'; | |
} | |
add_action('wp_head', 'vinx_favicon'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment