Last active
September 11, 2022 09:57
-
-
Save terrytsang/ff47210a47f230277720cfdc9e72d26d to your computer and use it in GitHub Desktop.
Add a new Favicon to your WordPress website
This file contains 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
<?php | |
//add this code to your theme functions.php | |
// add a favicon | |
function tt_new_favicon() { | |
echo '<link rel="favicon" type="image/x-icon" href="https://www.yoursite.com/wp-content/uploads/2022/09/favicon.ico" />'; | |
} | |
add_action('wp_head', 'tt_new_favicon'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment